【发布时间】:2020-08-11 07:05:31
【问题描述】:
没有JS有什么办法吗?
html
<div class="wrapper">
<div class="fix"></div>
</div>
css
.wrapper {
max-width: 500px;
border: 1px solid red;
height: 5500px;
position: relative;
}
.fix {
width: inherit;
height: 20px;
position:fixed;
background: black;
}
除了width: 100%;,我无法为.wrapper 添加任何其他样式。
我尝试使用width: inherit,但它对我不起作用,因为我的父 div 只有最大宽度。 source
【问题讨论】:
标签: html css css-position