What is true of block and inline elements? (Alternative: Which statement about block and inline elements is true?)
A <nav> element is an example of an inline element. <header> is an example of a block element.
<nav>
<header>
A <span> is an example of a block element. <div> is an example of an inline element.
<span>
<div>
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.
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.