JSFiddle - React, Tailwind, and code Playground
by glee
HTML
<div class = "onediv"><a href = "#">Glee is awesome!</a></div>
<div class = "onediv"><a href = "#">Glee is awesome!</a></div>
<div class = "onediv"><a href = "#">Glee is awesome!</a></div>
CSS
body {
text-align: center;
white-space: nowrap;
}
.onediv {
display: inline-block;
height: 200px;
width: 150px;
background: rgb(0, 162, 232);
color: white;
}
a {
color: white;
height: 100%;
width: 100%;
display: block;
}