Skip to content
Marie-Louise edited this page Jan 17, 2019 · 1 revision

What's the difference between <div> and <span> tags?

<div> is defined as a block element <span is defined as an inline element

<div>'s should be used to wrap sections of the markup/document and <span>'s should be used to wrap small sections or portions such as text and images.

<div>This a large main division, with <span>a small bit</span> of spanned text!</div>

Clone this wiki locally