JSFiddle - React, Tailwind, and code Playground

by Michael Prosser

HTML

<header>
  <button>The Button</button>
  <ul>
    <li><a href="#">Link 1</a></li>
    <li><a href="#">Link 2</a></li>
    <li><a href="#">Link 3</a></li>
  </ul>
</header>

CSS

button{
  background-color:#666;
  color:#FFF;
  padding:8px;
  transition: all 1s;
  buorder:none;
}
button:hover{
  background-color:#ff0000;
}