What is true of block and inline elements? (Alternative: Which statement about block and inline elements is true?)
A <span> is an example of a block element. <div> is an example of an inline element.
<span>
<div>
A <nav> element is an example of an inline element. <header> is an example of a block element.
<nav>
<header>
By default, block elements span the entire width of its container; inline elements are the same height and width as the content contained between their tags.
By default, block elements are the same height and width as the content container between their tags; inline elements span the entire width of its container.