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.
Web ページの小さな画像の周りにテキストを浮かせようとしています。考えられることはすべて試しました。ここに html と css を埋め込むつもりだったのですが、うまくできませんでした。
(回答があり次第、URL を編集して広告として使用しないようにします。) [削除]
基本的に、あなたはそれを逆にしました。
画像をインラインにして を浮動させる代わりに、画像を浮動させ、 をインラインのpままにしpます。ただし、画像がテキストの前に来ることを確認してください...次のように:
p
<img src="foo.png" style="float: left;"> <p> this is some awesome text blah blah </p>
段落ではなく、画像を左にフロートする必要があります。