码迷,mamicode.com
首页 > Web开发 > 详细

css固定定位,不随滚动条滚动

时间:2021-04-20 14:02:22      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:cal   height   ini   title   width   lang   viewport   固定   utf-8   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        body{
            font-size: 60px;
            height:2000px;
        }
        .box1{
            width:200px;
            height:200px;
            background-color: rgb(192, 245, 69);
        }
        .box2{
            width:200px;
            height:200px;
            background-color:orange;
             /*
                固定定位:
                    - 将元素的position属性设置为fixed则开启了元素的固定定位
                    - 固定定位也是一种绝对定位,所以固定定位的大部分特点都和绝对定位一样
                        唯一不同的是固定定位永远参照于浏览器的视口进行定位
                        固定定位的元素不会随网页的滚动条滚动
              */
              position: fixed;
              left: 0;
              top:0;
        }
        .box3{
            width: 200px;
            height: 200px;
            background-color: yellow;
        }
        .box4{
            width: 400px;
            height: 400px;
            background-color: tomato;
        }
        
        .box5{
            width: 300px;
            height: 300px;
            background-color: aliceblue;
        }
        
    </style>
</head>
<body>
    <div class="box1">1</div>
    <div class="box4">4
        <div class="box5">5
            <div class="box2">2</div>
        </div>
    </div>
    <div class="box3">3</div>
</body>
</html>

 

css固定定位,不随滚动条滚动

标签:cal   height   ini   title   width   lang   viewport   固定   utf-8   

原文地址:https://www.cnblogs.com/hr-7/p/14671733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!