JSFiddle - React, Tailwind, and code Playground

by Joan Gimenez

HTML

<div class="button">
    
    <table style="width:100%; height:100%;">
        <tr>
            <td style="vertical-align:middle;">
                BUTTON TEXT
            </td>
        </tr>
    </table>
    
</div>

CSS

.button {
    width:200px;
    height:150px;
    background:#ccc;
    border:1px solid #333;
    text-align:center;
}