<div class="img-blocks">
<div class="img-blocks-header"></div>
<div class="img-blocks-images"></div>
</div>
CSS的100%高度使用父股利
.img-blocks{
width:984px ;
height:265px;
margin: 0 auto;
background: white;
border-radius:7px ;
margin-bottom: 15px;
}
.img-blocks-header{
width:100% ;
height: 33px;
background: #c8c2c2;
border-radius:7px 7px 0px 0px;
text-align: center;
color: white;
}
.img-blocks-images{
width:100%;
height:100%;
padding:10px 0px 10px 0px;
border:1px dotted black;
}
我想這div
可用高度,即類.img-blocks-images
使用100%
從母公司扣除.img-block-header
高度之後。 不想使用100%
其父分區.img-blocks
的高度。
如果你的高度是固定的,爲什麼不使用'高度:(265-33)px'? – fcalderan
'height:calc(100% - 33px);' – Abhitalks
@abhitalks現在沒有足夠的支持,不幸 – valerio0999