带图像的 Div 浮动

发布于 2024-12-03 14:34:58 字数 73 浏览 0 评论 0原文

当我用文本浮动一个 div 时,它的行为就是我想要的,但是当我将图像放入其中时,浮动的行为方式不同,然后图像会向下一行。这是为什么?

When I float a div with text it in the behavior is what I want but when I put an image inside, the float dosen't behave the same way and the image then goes down one line. Why is that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

停顿的约定 2024-12-10 14:34:58

如果您希望文本位于图像的右侧,请将图像放在文本之前。
确保文本流向 img float:left 的右侧。

<div  style="float:left;">
<img src="someimg" style="float:left;"/>
<p>Text will pop on right</p>
</div>

如果你首先想要文本然后图像

<div  style="float:left; width:200px;">
<p style="width:80% float:left;">Text will pop on left</p>
<img src="someimg" style="width:20%"/>
</div>

Put the image before the text if you want the text on the right side of the img.
to make sure the text flows to the right of the img float:left.

<div  style="float:left;">
<img src="someimg" style="float:left;"/>
<p>Text will pop on right</p>
</div>

if you first want text then image

<div  style="float:left; width:200px;">
<p style="width:80% float:left;">Text will pop on left</p>
<img src="someimg" style="width:20%"/>
</div>
帅气尐潴 2024-12-10 14:34:58

从我最喜欢的东西中找出这些,因为它们过去对我有帮助。 Galchen 是对的 - 我们需要一些标记/CSS 来更好地理解您的问题。

如果将图像设置为样式中的块元素,则图像可能会下降 - 这会执行此操作。

http://css.maxdesign.com.au/floatutorial/

http://www.tizag.com/cssT/float.php

Dug these up from my favorites as they've helped me in the past. Galchen is right - we need some markup / CSS to better understand your issue.

The Image might go down if it's being set to a block element in a style - which would do this.

http://css.maxdesign.com.au/floatutorial/

http://www.tizag.com/cssT/float.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文