JSFiddle - React, Tailwind, and code Playground
by jimkennelly
HTML
<button class="buttonx buttonx1">2px</button>
<button class="buttonx buttonx2">4px</button>
<button class="buttonx buttonx3">8px</button>
<button class="buttonx buttonx4">12px</button>
<button class="buttonx buttonx5 redx">50%</button>
CSS
.buttonx {
background-color: #4CAF50;
border: none;
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
}
.redx {background-color: red;}
.buttonx5 {border-radius: 50%;}