fixed 固定定位
绝对定位相对于父元素移动
固定定位固定在页面,不会随着视口滚动而滚动
<style>
body{height: 1200px;width: 1200px;background-color: blue;}
.ab{height: 200px;width: 200px; border:2px black solid;position:absolute;}
.fix{ height: 200px;width: 200px; border:2px black solid; position: fixed;}
</style>
<body>
<div class="ab">绝对定位</div>
<div class="fix">固定定位</div>
</body>
</html>
本作品采用《CC 协议》,转载必须注明作者和本文链接