JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#">
<p class="normal">link</p>
</a>


<a href="#">
<p class="floated">link</p>
</a>

<a href="#">
<p class="positioned">link</p>
</a>

CSS

.normal {
  display: block;
}

.floated {
  float: left;
}

.positioned {
  position: absolute;
  top: 6em;
}