我正在尝试制作一个DIV,它几乎是一个带有左边对齐图像和文本位于图像右侧的边框.以下是我设置的方法:
<div style="padding:1%; border-style:solid; border-size:1px; width:100%;"> <img src="http://i.imgur.com/FwgZFNn.jpg" style="float:left; max-width:30%; max-height:200px;" /> Here is some text. </div>
问题在于,如果图像高于文本,则周围的DIV(以及边界)将自身调整为适合所有文本所需的高度,但图像溢出DIV.
如何使DIV更改其高度以适合较高者(图像或文本),以便两者都适合边框?
谢谢.
解决方法
添加display:inline-block“到你的div.
<div style="padding:1%; border-style:solid; border-size:1px; width:100%;display: inline-block"> <img src="http://i.imgur.com/FwgZFNn.jpg" style="float:left; max-width:30%; max-height:200px;" /> Here is some text. </div>