Priority custom CSS

Hi, you could do
a[href='#/page/A'] {font-size: 0;}
and then style the ::after pseudoelement, f9r example:

a[href='#/page/A']::after {
  content: 'A'; 
  font-size: 0.75rem;
  color: red;
  border: 2px solid red;
  border-radius: 5px;
  padding: 2px;
}
2 Likes