JSFiddle - React, Tailwind, and code Playground

by jfreiheit

HTML

<!DOCTYPE html>
<html>
<body>
  <ul id="navigation">
    <li><a href="startseite.html" class="link">Startseite</a></li>
    <li><a href="unterseite.html" class="link">Unterseite</a></li>
  </ul>
</body>
</html>

CSS

a:link {
  color: blue; 
}
  
.link {
	
  color: green;
}
  
#navigation a.link {
  color: red;
}

li a {
  color: magenta; 
}
  
#navigation li a {
    color: black;
}