difference between div and span tag

前端 未结 10 1506
眼角桃花
眼角桃花 2020-12-29 04:33

Can anyone give me the difference between div and span tags?

10条回答
  •  再見小時候
    2020-12-29 04:52

    div - it is a dom element with display property as a block that is element will take the whole row that is with the line-break.

    Your website name?
    http://www.array151.com

    will be displayed in two different rows. and each div will be considered as an individual block.

    Your website name?
    http://www.array151.com
    

    span - dom element with display property inline that is without line-break.

    Your website name?
    http://www.array151.com
    

    the result will be on the same line because of the span

    Your website name?http://www.array151.com
    

提交回复
热议问题