我試圖讓嵌套的div,這樣我就可以定位與上邊和左邊的孩子,這樣他們就可以互相重疊:嵌套的DIV,如何讓孩子真正在裏面?
https://jsfiddle.net/e0cpuarv/
.boo {
position: absolute;
left: 10px;
top: 10px;
width: 100px;
height: 70px;
background-color: red;
}
.kah1 {
position: absolute;
left: 20px;
top: 30px;
width: 50px;
height: 50px;
background-color: green;
}
.kah2 {
position: absolute;
left: 30px;
top: 40px;
width: 50px;
height: 50px;
background-color: blue;
}
<body>
<div class="boo">
<div class="kah1"></div>
<div class="kah2"></div>
</div>
</body>
它與一個巨大缺點 - 孩子只是在父母的頂端。我應該怎樣做才能讓他們成爲家長,像這樣?
事實上,孩子可能不會資料覈實,IMGS就足夠了太多,如果這有助於
謝謝,這個工作! =) –
爲什麼sir @VictorMuller –