JSFiddle - React, Tailwind, and code Playground

by Kai_Draord

HTML

<ul class="nav-mobile">
  <li class='n1'>
    <a href='https://google.com' target="_blank"><div>test</div></a>
  </li>
</ul>

CSS

.nav-mobile .n1{
  background: url(http://via.placeholder.com/350x150) no-repeat;
  background-size: cover; /* contain */
  background-position: right;
}
.nav-mobile .n1 > a > div{
  text-indent:-9999px;
}