我试图让两个正方形在父 div 中相互重叠。方块使用位置:继承。请注意,正方形的数量是动态的。另请注意,父 div 正在使用 margin-left: 30%。这可能吗?
<div style="border: 1px solid Black; width: 300px; height:300px; margin-left:30%;">
<div style="height:40px; width:40px; border: 1px solid Black; position:inherit; left:0px; top: 0px;"></div>
<div style="height:40px; width:40px; border: 1px solid Black; position:inherit; left:0px; top: 0px;"></div>
</div>