what's the best way to add a line break before and after div?

后端 未结 4 1828
天涯浪人
天涯浪人 2021-01-21 11:43

Someone shows me a html to use div tag to show some text with background image included

SOME TITLE
4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-21 12:27

    You can give margin from top and bottom like this:

    margin: 10px 0;
    

    Above will apply 10px margin from top and bottom. You can also use individual properties such as margin-top and margin-bottom.

提交回复
热议问题