- 固定定位就是相对浏览器窗口定位,不存在跟父盒子跑,页面如何滚动这个盒子显示位置不变,固定定位脱标
返回顶部 *{ padding: 0; margin: 0; } .box1{ height: 10000px; width: 400px; background-color: red; } .backtop{ position: fixed; width: 100px; height: 100px; background-color: yellow; bottom: 50px; right: 50px; text-align: center;//文字水平居中 line-height: 100px;//文字垂直居中 } <div class="box1" id="jier"></div> <div class="backtop"><a href="#jier">回家喽</a></div>
15.固定定位
最新推荐文章于 2022-04-03 16:38:19 发布