的一個div內我有一個img和需要接下來要顯示到彼此的文本塊。如果文字在垂直方向上延伸,文字不應該包裹在圖像下方。 img始終爲50px,但文本需要流動以適應容器的剩餘寬度,隨後將其設置爲用戶瀏覽器的寬度。我該怎麼做呢?CSS如何浮動或顯示未知寬度的兩個元件彼此相鄰的未知寬度
所以基本上:
<div> <!--width is 100% of browser-->
<img/> <!--width is 48px-->
<p>Lorem Ipsum</p><!--width is unknown. Should show up next to img -->
</div>
很好 - 非常感謝。 – mheavers