让position:fixed相对于父元素定位

chat

position:fixed;是以窗口为参照进行定位的。

在父元素加上transform:translate(0,0)即可实现 相对于父元素定位。

测试代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>

        .parent {
            width: 800px;
            height: 600px;
            background-color: #4dc71f;
            transform: translate(0, 0)

        }

        .child {
            background-color: #a7dbd8;
            position: fixed;
            width: 100%;
            height: 200px;
            bottom: 10px;
            left: 0;

        }
    </style>
</head>
<body>

<div class="parent">

    parent
    <div class="child">child</div>

</div>
</body>
</html>

版权声明:
作者:东明兄
链接:https://blog.crazyming.com/note/665/
来源:CrazyMing
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
海报
让position:fixed相对于父元素定位
小技巧
<<上一篇
下一篇>>
chat