JSFiddle - React, Tailwind, and code Playground

by Abdull

HTML

<a href="http://iavi.com">Test</a>
<a href="http://iavi.com"><span>hi</span></a>

CSS

a[href^="http"]::after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: yellow;
}

a[href^="http"] span ~ *::after {
  content: 'x';
  background-color: pink;
}