怎么让position:fixed相对于父元素定位
position:fixed 正常来说是相对于浏览器窗口定位的, 最近遇到一个场景,需要让加了这个属性的元素相对于父元素定位
fixed不为元素预留空间,而是通过指定元素相对于屏幕视口(viewport)的位置来指定元素位置。元素的位置在屏幕滚动时不会改变。打印时,元素会出现在的每页的固定位置。fixed 属性会创建新的层叠上下文。当元素祖先的 transform 属性非 none 时,容器由视口改为该祖先。
解决方案: 给父元素加上 transform: scale(1,1) 或者是别的,只要transform 的属性不是none就行
(会产生副作用, 会影响其他的定位)
让加了postion:fixed 属性的元素水平居中
解决方案:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>1</title>
<style>
.test {
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 600px;
margin: 0 auto;
background-color: green;
}
</style>
</head>
<body>
<div class="test">22</div>
</body>
</html>