JSFiddle - React, Tailwind, and code Playground

by Venkatesh Dematti

HTML

<a href="">Link</a>

CSS

a {
  color:red;
}

a:focus {
  outline: 2px #000 solid;
	outline-offset: 0;
	/* outer indicator */
	box-shadow: 0 0 0 4px red;
}

JavaScript

document.querySelector("a").addEventListener("click", (x) => {
	x.preventDefault();
});