.right-top { position: absolute; top: 0; right: 0; }
在上面的代码中,大家定义了一个.right-top的class,使用了position:absolute属性使元素脱离正常流,然后指定了top:0和right:0,使它定位到右上角。如果使用fixed属性,则元素将固定在浏览器窗口的右上角,不受滚动影响。
.fixed-right-top { position: fixed; top: 0; right: 0; }
通过使用定位和top、right、left、bottom属性,可以将元素放置到页面的任何位置。定位到右上角是一种比较常见的用法,可以让页面更加美观。