【发布时间】:2020-12-02 15:26:48
【问题描述】:
#parent {
position: fixed;
width: 600px;
height: 300px;
background: red;
}
#child {
position: relative;
width: 200px;
margin-bottom: 10px;
margin-top: 10px;
height: auto;
background: blue;
}
<div id="parent">
<div id="child"></div>
</div>
我想让孩子拥有父母的身高减去边距。为什么高度是0px?
【问题讨论】:
-
display:flex to parent?