CSS 固定定位 position fixed

简单描述:固定定位是将某个元素固定在浏览器的某个确定的位置,不随滚动条的移动而变化;

                注意:固定定位的位置是  相对当前浏览器窗口  的;

代码示例:

1.我们先在页面中输出一个标准情况下的 div 元素,不添加定位;

 代码:

<!doctype html>
<html>
     <head>
          <meta charset="utf-8">
          <title></title>
          <style>
              *{margin:0;padding:0;}
             .abc{width:200px; height:200px; background-color:red; border:2px solid yellow;}
          </style>
     </head>
     <body>
            <div class="abc"></div>
     </body>
</html>

 显示如下:


2.   然后给 div 元素添加固定定位:设置 position:fixed; left:100px;  top:100px;

代码:

<!doctype html>
<html>
     <head>
          <meta charset="utf-8">
          <title></title>
          <style>
              *{margin:0;padding:0;}
             .abc{width:200px; height:200px; background-color:red; border:2px solid yellow;
             position:fixed; left:100px; top:100px;}
          </style>
     </head>
     <body>
            <div class="abc"></div>
     </body>
</html>

显示:


3.我们再次修改定位: position:fixed;  right:100px;  top:100px;

 显示效果:


可以看出坐标系是不断变化的,

那么:  left  +  top: 相对于 左 上 顶点进行位移

            left+bottom:相对于 左 下 顶点进行位移

            right +top:相对于 右 上 顶点进行位移

            right +bottom:相对于 右 下 顶点进行位移


  • 8
    点赞
  • 27
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值