JSFiddle - React, Tailwind, and code Playground
by zainshaikh
HTML
<span class="rounded-box">
Hello World!
</span>
CSS
/* Pretty */
body {
font: 100%/2 "Segoe UI", "Trebuchet MS","Tahoma","Helvetica","Arial",sans-serif;
color: #fff;
margin: 2em;
}
.rounded-box
{
padding: 5px;
background-color: #d45026;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
border-radius: 6px;
}