可以用position:absolute来固定,这个是绝对定位,和fixed相差无几,不过这个有父元素限制,就是默认样式不会超出父元素的范围,当然可以通过margin top left bottom right等来进行位置定位
如:
<div>返回顶部</div>CSS:
div{position:absoluteright:10pxtop:40% width:100pxheight:20px}
第二种:
div{position:fixedright:10pxtop:40% width:100pxheight:20px}