定位-固定定位

2018-09-18 06:32:56来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

把box2设为固定定位:

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title>定位</title>
    <style media="screen">

      .box1{
        width:100px;  
        height: 100px;
        background-color: rgb(184, 208, 162);
      }
      .box2{
            width:100px;
            height: 100px;
            background-color: rgb(231, 223, 143);
            position:fixed;
            left: 100px;
            top:  100px;
      }
      .box3{
        width:100px;
        height: 100px;
        background-color: rgb(188, 211, 213);
      }
      span{
        background-color: rgb(209, 198, 209);
      }
    </style>
  </head>
  <body>
   <div class="box">
    <div class="box1">
    </div>
    <div class="box3">
      <div class="box2">
      </div>
    </div>
    <span>span元素</span>
   </div>
  </body>
</html>

 输出:固定定位永远都会相对于浏览器窗口进行定位;

             固定定位会固定在浏览器窗口某个位置,不会随滚动条滚动;

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:定位-绝对定位

下一篇:从零开始的全栈工程师——html篇1.4