JSFiddle - React, Tailwind, and code Playground
by khamer
HTML
<a href="#" class="card">
<div>
<h1>Lorem ipsum.</h1>
<a href="">learn</a>
<a href="">foo</a>
</div>
</a>
CSS
.card {
display: inline-flex;
flex-direction: column;
border: 2px solid;
}
a
{
cursor: auto;
-webkit-user-select: text;
-moz-select: text;
-ms-select: text;
user-select: text;
}