JSFiddle - React, Tailwind, and code Playground

by Christian Gambardella

HTML

<div class="round">some content</div>
<button type="button" class="round">some content</button>

CSS

.round {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    
    background-color: #ccc;
    color: #000;
    
    padding: 10px;
    width: 200px;
    
    border: 1px solid red
}