我有以下的HTML和CSS代碼:如何並排保持兩個同軸塊的div側即使第二個div溢出
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body
{
background-color:#d0e4fe;
}
div.container
{
width: 600px;
border: solid 1px black;
}
div.divLeft
{
display:inline-block;
border: solid 1px red;
color: red;
}
div.divRight
{
display:inline-block;
border: solid 1px blue;
color: blue;
}
</style>
</head>
<body>
<div class="container">
<div class="divLeft">
<p>1 - Some short text</p>
</div>
<div class="divRight">
<p>Some not too long text with the div besides the first one.</p>
</div>
</div>
<div class="container">
<div class="divLeft">
<p>2 - Some short text</p>
</div>
<div class="divRight">
<p>Some very long text that will eventually wrap because it is so long and when it wraps is when the trouble starts because the div moves down instead of staying besides the first one.</p>
</div>
</div>
</body>
</html>
在第二種情況下,有沒有辦法讓DIV除第一個,而不是第一個。請注意,我無法將固定寬度用於我的div,作爲將在其中顯示的文本的長度未知的長度。那麼只有我知道的是,第一個div中的文本總是很短,第二個文本中的文本可能很長。
這裏是我想要的一個基本圖:
First div text Second div text stays beside the first one
and wraps around still being aligned like this
謝謝大家!
你可以發佈一個圖表顯示預期的結果嗎?我不明白你的意思 – 2012-08-12 06:59:18
系統不會讓我發佈圖片,因爲我是新用戶。 – 2012-08-12 19:56:52
我添加了一個顯示我想要的「基本」圖。 – 2012-08-12 20:02:38