我有下一个html:
<div class="left">
<div style="margin: 32px 0;">
<div class="border"></div>
</div>
</div>
和CSS:
.left {
position:absolute;
background: red;
height: 50%;
width: 32px;
}
.border {
background: green;
height: 100%;
}
但我没有看到绿框:(
UPD:我想看到绿色框上方和下方的红色方块。
UPD2:绿色框的高度应为 red.height - 32px*2