JSFiddle - React, Tailwind, and code Playground

by Neil Renicker

HTML

<span class="addbefore">
  <span class="visuallyhidden>You are here</span>
</span>

CSS

.addbefore:before {
  content: "Show this";
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}