Which commonly used elements are display: block? Which are display: inline;?

Question

Which commonly used elements are display: block;? Which are display: inline;?

Answer

Common display: block; elements:
<div>
<footer>
<h1> - <h6>
<header>
<li>
<main>
<nav>
<ol>
<p>
<ul>
<video>
…along with many others!

Common display: inline; elements:
<a>
<em>
<img>
<span>
…among others!

3 Likes

Why is a video typically a block element while an image is typically an inline element? Thanks

1 Like