当前位置:   article > 正文

position的absolute与fixed共同点与不同点_position fixed absolute

position fixed absolute

这个问题面试被问到过~~

position属性是对于元素位置设置的属性,一般来说fixed是相对于window窗口的不会随着页面的滚动而位置发生变化

absolute是相对于页面中的元素位置设置的,所以位置会随着页面的滚动而发生变化,不会固定不变。如果页面没有滚动条的时候,两者的效果是一样的。

fixed:固定定位

absolute:绝对定位

区别很简单:

1、没有滚动条的情况下没有差异

2、在有滚动条的情况下,fixed定位不会随滚动条移动而移动,而absolute则会随滚动条移动

可以这么理解,fixed:固定在当前window不动, absolute:会随参照对象元素的高度和宽度变化而变化

一般fixed用在遮盖层和固定在页面某个位置,如固定在顶端的菜单栏,又如弹出提示框居中显示

下面例子可是简单测试两者之间的区别,注意拖动滚动条看差异

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. <title></title>
  6. <style>
  7. body {
  8. height:1000px;/*让窗体出现滚动条*/
  9. }
  10. .fixed {
  11. position: fixed;
  12. left: 100px;
  13. right: 100px;
  14. top: 100px;
  15. bottom: 100px;
  16. width: auto;
  17. height: auto;
  18. border: 1px solid blue;
  19. }
  20. .absolute {
  21. position: absolute;
  22. left: 100px;
  23. right: 100px;
  24. top: 100px;
  25. bottom: 100px;
  26. width: auto;
  27. height: auto;
  28. border: 1px solid red;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="fixed">fixed定位</div>
  34. <div class="absolute">absolute定位</div>
  35. </body>
  36. </html>

效果如下:当滚动条下拉时,absolute层会上移,fixed层不动

 

 

 

A:共同点:

1.改变行内元素的呈现方式,display被置为block;

2.让元素脱离普通流,不占据空间;

3.默认会覆盖到非定位元素上

 

B不同点:

absolute的”根元素“是可以设置的,而fixed的”根元素“固定为浏览器窗口。

当你滚动网页,fixed元素与浏览器窗口之间的距离是不变的。  

 

典型应用案例:

加了遮罩的居中弹窗,假如有很多屏,就得使用fixed,不然向下滚动弹窗和遮罩不会跟着走。

  1. <input type="button" value="请点我"/>
  2. <div class="bg"></div>
  3. <div class="center"></div>
  1. *{margin: 0; padding: 0;}
  2. body{height: 6000px;}
  3. .bg{background: #000; opacity:0.5; filter:alpha(opacity=50); width: 100%; height: 100%; top:0; left:0; position: fixed;}
  4. .center{width: 500px; height: 500px; background: #fff; position: fixed; top:50%; left:50%; margin-left:-250px; margin-top:-250px;}

http://www.makaidong.com/shuiqing/379_202873.html 

https://www.php.cn/css-tutorial-369982.html

https://blog.csdn.net/m0_37972548/article/details/78906468

https://www.cnblogs.com/yuer20180726/p/11141288.html

https://blog.csdn.net/m0_37972548/article/details/78906468#commentBox

https://www.cnblogs.com/yuer20180726/p/11141253.html

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/535258
推荐阅读
相关标签
  

闽ICP备14008679号