JSFiddle - React, Tailwind, and code Playground

by lottikarotti

HTML

<div>
    Content.
</div>

CSS

/* -- demo -- */
div { height: 200px ; }

/* -- layout -- */
div {
    padding: 10px ;
    background-color: #E5E3E3 ;
    border: 2px solid #555 ;
    
    /** http://caniuse.com/#search=border-radius */
    border-radius: 10px ;
    
    /** http://caniuse.com/#search=box-shadow */
    box-shadow: 0 0 10px #999 ;
}