最近看mdn找到一个有意思的东西,position: fixed的祖先不一定就是视口。
MDN文档
https://developer.mozilla.org/zh-CN/docs/Web/CSS/position
元素会被移出正常文档流,并不为元素预留空间,而是通过指定元素相对于屏幕视口(viewport)的位置来指定元素位置。元素的位置在屏幕滚动时不会改变。打印时,元素会出现在的每页的固定位置。fixed 属性会创建新的层叠上下文。当元素祖先的 transform, perspective 或 filter 属性非 none 时,容器由视口改为该祖先。
例子
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="out">
<div>
<div class="inner">
A
</div>
</div>
</div>
</body>
</html>
.out {
width: 200px;
height: 200px;
margin: 50px;
/* 当元素祖先的 transform, perspective 或 filter 属性非 none 时,容器由视口改为该祖先。 */
transform: translate(0, 0);
}
.inner {
position: fixed;
right: 0;
}