JSFiddle - React, Tailwind, and code Playground

HTML

<div id="box">
    Testing the awesome padding-feature of CSS!
</div>

CSS

body {
    padding: 20px;
}

#box {
    width: 150px;
    margin: auto;
    background-color: #c5c5c5;
    padding: 20px;
    font: 12px Trebuchet MS;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
}