JSFiddle - React, Tailwind, and code Playground

by mromanbanks

HTML

<a href="https://apple.com" target="_blank">
  <div>
    <span class="shape"></span>
    <p>spme text here</p>
  </div>
</a>

CSS

.shape {
  display: block;
  width: 100%;
  height: 200px;
  background-color: grey;
}

a {
  color: inherit;
  text-decoration: none;
}