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

后端 未结 4 1829
天涯浪人
天涯浪人 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:14

    Add the child divs to span like below

    data1
    data2

    css:

       .span1{
          display:inline-block;
        }
        .span2{
          display:inline-block;     
        }
    
    
    
    
        

提交回复
热议问题