當我使用float:left和另一個具有相對位置的div塊時,第二個塊的行爲意外 - 文本超出框和背景顏色。這裏發生了什麼?HTML:浮點數:左和相對位置
https://jsbin.com/merehowoxa/1/edit?html,output
#first-section{
color:black;
background-color:pink;
width:100px;
float:left;
}
#second-section{
color:purple;
background-color:yellow;
width:100px;
height:100px;
position:relative;
left:500px;
top:200px;
}
我不明白爲什麼「#第二部分」是相對的? –
爲什麼不能這樣? https://jsbin.com/mitozamoja/1/edit?html,output – AlwaysConfused