JSFiddle - React, Tailwind, and code Playground

by amenadiel

HTML

<div id="table">
    <div class="row">
        <div class="cell">
            <a href="">I'm your button</a>
        </div>
        <div class="cell">
            <a href="">I'm a button with wider text</a>
        </div>
    </div>
</div>

CSS

#table {
    width: 400px;
    display: table;
    background: red;
}

.row {
    display: table-row;
}

.cell {
    display: table-cell;
    height: 150px;
    width:200px;
    background: yellow;
    vertical-align: middle;
    text-align: center;
    border:1px solid;
}
.cell a {
  padding:10px;
  width:100px;
  border:1px solid;
  height:50px;
  display:inline-block;
}