Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让文本漂浮在我网页上的小图像周围,我已经尝试了我能想到的一切。我会在这里嵌入 html 和 css,但是我在做这件事时遇到了麻烦,对不起。
(当它被回答时我会编辑掉这个网址,所以我不会把它用作广告。)[删除]
基本上,你已经倒退了。
不是让图像内联并浮动p',而是浮动图像,让p' 内联。确保图像仍然出现在文本之前......就像这样:
p
<img src="foo.png" style="float: left;"> <p> this is some awesome text blah blah </p>
您需要将图像向左浮动,而不是段落。