以前のスレッドに基づいて、overflow 要素を使用して 2 つの div を水平方向に配置する推奨方法を使用して理解しようとしています。
私の短いテキストでは 2 つの div が正しく配置されていますが、孤独なテキストを追加すると画像の下に落ちてしまいます。なぜこれが起こっているのか、どうすれば修正できるのか、誰でも説明できますか?
私のJSFIDDLE
HTML:
<div class="container" style="overflow: hidden; width: 100%">
<div class="left">
<img src="http://localhost/new/img/sampleimg.png" class="wall-thumb-small" />
</div>
<div class="right">
<div style="word-wrap: break-word;">Some long text here Some long text here Some long text here Some long text here Some long text here </div>
</div>
</div>
CSS:
div.container {
border: 1px solid #000000;
overflow: hidden;
width: 100%;
}
div.left {
padding:5px;
float: left;
}
div.right {
float: left;
}
.thumb-small{
width:35px;
height:35px;
border: 1px solid #B6BCBF;
}