我想在一行中顯示兩個DIV。每個DIV都應該有另一個DIV。內部DIV應該具有與外部DIV減去邊距相同的高度。DIV內部的DIV具有100%的高度減去邊距
我無法在DIV內設置適當的高度(忽略下邊距)。你能幫助我嗎?的jsfiddle:https://jsfiddle.net/gf53e0on/
<body>
<div class="box"><div class="box-in"></div></div>
<div class="box"><div class="box-in"></div></div>
</body>
body {
position: fixed;
width: 100%;
border: none;
display: table;
table-layout: fixed;
padding: 0;
margin: 0;
top: 0;
left: 0;
}
.box {
border: none;
display: table-cell;
height: 100vh;
background-color: yellow;
}
.box-in {
border: solid 1px;
margin-top:10px;
margin-bottom:10px;
margin-left:10px;
margin-right:10px;
height: 100%;
}
當我嘗試顯示DIV裏面的東西與箱類它不工作。 – blaballong
你能不能模糊一點? –