JSFiddle - React, Tailwind, and code Playground
Lynda.com CSS #1 - inline, block and display
by totoromaum
HTML
<div>This is a div.</div>
<p>This is a paragraph.</p>
<span>This is a span.</span>
<a href="#">This is a link.</a>
CSS
div, p {
background: #e74c3c;
/* height: 40px; */
/* width: 150px; */
}
span, a {
background: #3498db;
/* height: 40px; */
/* width: 150px; */
}