我在外部 div 中有一个内部 div。
当我设置 top: SomeValue for innerdiv 时,它与外部 div 重叠。
#div1{
position: relative;
top: 10px;
left: 20px;
width: 50%;
background: green;
}
#div2{
position: relative;
top:5px;
left: 20px;
width: 80%;
background: red;
}
这是我的jsfiddle
如何克服它?