JSFiddle - React, Tailwind, and code Playground

by lottikarotti

HTML

<div>
    <a href="#">
        Content<br />
        Content<br />
        Content<br />
        Content<br />
    </a>
</div>

CSS

div {
    position: absolute ;
    top: 50px ;
    left: 50px ;
    right: 50px ;
    bottom: 50px ;
    background-color: lightblue ;
    text-align: center ;
}

div a {
    display: block ;
    height: 100% ;
}

div a:hover {
    background-color: lightgreen ;
}