Stop text from wrapping around image

前端 未结 5 1300
没有蜡笔的小新
没有蜡笔的小新 2021-02-03 14:24

I want to stop text from wrapping around image. Is there any way to do this without using margin?

5条回答
  •  无人共我
    2021-02-03 14:53

    As a general rule here are some best practices to improve your css and html skills:

    1) Always separate images and texts in the corresponding tags: for images and

    or

    or for texts.

    2) As a general rule, separate your content (html) and your style (css) as much as possible.

    3) To understand how CSS works you have to learn the box model. Here is an excellent article to get you going: http://css-tricks.com/the-css-box-model/

    This box model will help you with your problem.

提交回复
热议问题