私はこのコードを持っていますが、.text
期待どおりに動作していません。はコンテナの に収まるはずですが、divauto
は2 行目にプッシュされます。画像の幅は変更される可能性があり、画像の幅に関係なく、常に右の div がコンテナーに収まる必要があるため、auto 値が必要です。width
.text
<div class="container">
<div class="img"><img src="http://placehold.it/350x150"></div>
<div class="text">Some text Some textSome textSome textSome textSome textSome textSome textSome textSome textSome textSome textSome textSome textSome text</div>
</div>
.img, .text {
float:left;
}
.text{
border: 1px solid red;
height:150px;
width:auto; //should be width:248px in this specific case;
}
.container{
width:600px;
border:1px solid green;
height:150px
}