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!