最近看mdn找到一个有意思的东西,position: fixed的祖先不一定就是视口。

MDN文档

https://developer.mozilla.org/zh-CN/docs/Web/CSS/position

元素会被移出正常文档流,并不为元素预留空间,而是通过指定元素相对于屏幕视口(viewport)的位置来指定元素位置。元素的位置在屏幕滚动时不会改变。打印时,元素会出现在的每页的固定位置。fixed 属性会创建新的层叠上下文。当元素祖先的 transform, perspective 或 filter 属性非 none 时,容器由视口改为该祖先。

例子

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. </head>
  8. <body>
  9. <div class="out">
  10. <div>
  11. <div class="inner">
  12. A
  13. </div>
  14. </div>
  15. </div>
  16. </body>
  17. </html>
  1. .out {
  2. width: 200px;
  3. height: 200px;
  4. margin: 50px;
  5. /* 当元素祖先的 transform, perspective 或 filter 属性非 none 时,容器由视口改为该祖先。 */
  6. transform: translate(0, 0);
  7. }
  8. .inner {
  9. position: fixed;
  10. right: 0;
  11. }

在线例子

https://jsbin.com/ruboqohujo/1/edit?html,css,output