這裏是圖片如何把彼此相鄰3周的div在HTML
你好我嘗試把旁邊的3周彼此的div就像在鏈接 (我很抱歉我不能顯示圖片顯然我的等級太低,不能顯示圖片) 如果你不能看到圖片,即時通訊設法顯示3個divs彼此內聯和不會調整大小,即使你改變瀏覽器的大小我怎麼去呢? 感謝您的時間
這是我的代碼
body{
}
#wrap{
width:auto;
margin:0 auto;
border:0px solid;
height:200px;
display:block;
}
#one {
width:40%;
float:left;
background:red;
}
#two {
background:yellow;
}
#three {
width:40%;
float:inherit;
background:blue;
}
<div id="wrap">
<div id="one"> BREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAK</div>
<div id="two"> BREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAK</div>
<div id="three">BREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAKBREAK</div>
</div>
你'#DIV two'不浮動......而作爲一個塊級元素(因爲它應該,BTW ...) 檢查我的答案:-) –
給這些div固定寬度並使用float:left; – Ionut
謝謝你的回覆如此之快,我曾嘗試過,但一旦我改變瀏覽器的大小,我已經取得了第三個div,最終會低於div1,一旦我在這些div中有很多信息,它會看起來很奇怪嗎?有這個解決方案嗎? – Julius