JSFiddle - React, Tailwind, and code Playground

by DeptofJeffAyer

HTML

<div>
    <a>a blue button</a>    
</div>

<div>
    <a class="blue-button">a blue button</a>    
</div>

CSS

div {
    width:100%;
}

a { 
    display:block; 
    width:150px;
    margin:0px auto 20px auto;
    line-height:38px; 
    font-size:15px; 
    font-family:Georgia, Times, serif; 
    color:#fff; 
    background:#0cbab9; 
    text-align:center; 
}

.blue-button { 
    font:normal 15px Georgia, Times, serif;
}