CSS
div {
/* Default: flows with the browser
CANNOT have margin, padding, width
<span>, <a>, <strong>, <em>, etc. */
display: inline;
/* Forced onto a single line
CAN have margin, padding, width
<h1>, <p>, <div>, <figure>, etc. */
display: block;
/* Flows with the browser
CAN have margin, padding, width
<img>, etc. */
display: inline-block;
}