0 votes
in HTML by
What is the difference between span and div?

1 Answer

0 votes
by
div is a block element

span is inline element

For bonus points, you could point out that it’s illegal to place a block element inside an inline element, and that while div can have a p tag, and a p tag can have a span, it is not possible for span to have a div or p tag inside.
...