JSFiddle - React, Tailwind, and code Playground
Lynda.com CSS #1 - Box Model
by totoromaum
HTML
<p>This is a paragraph.</p>
<p>This is a another paragraph.</p>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
CSS
p {
background: lightgreen;
padding: 10px;
margin:10px;
border: 2px solid black;
}
a {
background: yellow;
padding: 10px;
display:inline-block;
}