您可以添加
overflow
值不同于的属性
visible
到
.text
div元素,以防止内容包装浮动图像。
Example Here
.text {
overflow-x: auto; /* or hidden; */
/* overflow property would create a new block formatting context */
/* https://developer.mozilla.org/en-US/docs/CSS/block_formatting_context */
}
或
float
这个
文本
元素以及图像
(作为
@MrAlien
建议)
,确保分配一些
width
至浮动元件。(
Example here
)
或者,您可以设置左侧
margin
(>=
宽度
浮动图像的)
到
文本
元素:
.text {
margin-right: 15px;
padding-bottom: 10px;
padding-top:5px;
margin-left: 110px; /* <-- Added margin */
}
Updated example
.