私はdivでテキストを浮動させるとき、それは私が望むものですが、イメージを内部に置くと、浮動小数点は同じように動作し、イメージは1行下がります。何故ですか?Div Float with Image
2
A
答えて
0
過去に私を助けてくれたこれらのものを私のお気に入りから掘り起こしてください。 Galchenが正しいです - 問題をよりよく理解するためにマークアップ/ CSSが必要です。
イメージは、スタイル内のブロック要素に設定されているとダウンする可能性があります。
3
あなたはIMGの右側にテキストが必要な場合は、テキストの前に画像を置きます。 テキストが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>
関連する問題
- 1. float image over div
- 2. css navbar with image
- 3. image with nivo slider jquery
- 4. IE float div wrapping
- 5. app engine req.getParameter with float
- 6. vm with ubuntu image with minikube-kubernetes
- 7. MBProgreeHud with gif image
- 8. ListView with fixed image
- 9. UITableViewRowAction with image、swift
- 10. Image Preview in JS with JS
- 11. HTML5 Canvas with Predefined Image
- 12. overlay image with text btn
- 13. Image Cover with LaTeX(WinEdt)
- 14. image mouse move with move
- 15. HTML 5 datalist with image
- 16. css div + background-image
- 17. css image div help
- 18. Image/DIV animation + event chaining
- 19. Matlab image legend with color blocks
- 20. 角2 ERROR with show image
- 21. Image Map with Flash/Flex&jQuery
- 22. FPDF with Classic ASP、Image Error
- 23. Slim Image Cropper with Laravel 5.3
- 24. UWP C#load image with await
- 25. SonataAdminBundle with sonata_type_collection and upload image
あなたのコードを投稿することができますしたい場合は?画像を浮かべてみてください – galchen
あなたが何を求めているかはかなり不明です。 – Wex
おそらく、この問題を理解するのに役立つコードマークアップやスクリーンショットを投稿することができます。完了したら、再度開いてください。ありがとう。 – Kev