如何让我的文本与此 一起流动? 而不是等到事情清楚为止? [HTML]

发布于 2024-07-14 08:49:16 字数 125 浏览 4 评论 0原文

我试图让文本漂浮在网页上的小图像周围,并且我已经尝试了我能想到的一切。 我想在这里嵌入 html 和 css,但我遇到了麻烦,抱歉。

(当有人回答时,我会编辑掉该网址,所以我不会将其用作广告。) [已删除]

I'm trying to get the text to float around the little image on my web-page, and I've tried everything I can think of. I would embed the html and css here, but I had trouble doing it, sorry.

(I'll edit out the url when it's answered so I ain't using this as advertising.)
[removed]

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

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

发布评论

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

评论(2

随风而去 2024-07-21 08:49:16

基本上,你已经倒退了。

不要让图像内联,然后浮动 p,而是浮动图像,保留 p 内联。 确保图像仍然位于文本之前...就像这样:

<img src="foo.png" style="float: left;">
<p>  
   this is some awesome text blah blah
</p>

Basically, you've done it backwards.

Instead of having the image inline, and floating the p's, float the image, leave the p's inline. Make sure the image still comes before the text though... Like this:

<img src="foo.png" style="float: left;">
<p>  
   this is some awesome text blah blah
</p>
浅笑依然 2024-07-21 08:49:16

您需要将图像向左浮动,而不是段落。

You need to float the image left, not the paragraph.

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