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 协议》,转载必须注明作者和本文链接
讨论数量: 0
(= ̄ω ̄=)··· 暂无内容!

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!