JSFiddle - React, Tailwind, and code Playground

by marikasanuki

HTML

<div id="box"><h5 class="headline">Text</h5></div>

CSS

body {
    background: #006600;
}
#box {
    padding: 20px; /* percentages work but can be tricky */
    margin: 20px;
    background: #660000; /* full syntax */
    color: #fff; /* shorthand syntax */
    font-size: 14px; /* try 1em */
    font-family: 16px; 
    text-transform: uppercase; /* none | capitalize | uppercase | lowercase | full-width */
}
.headline {
    font-size: 18px;
}