JSFiddle - React, Tailwind, and code Playground

by mobidevelop

HTML

<button>Button</button>
<button disabled>Button</button>

CSS

button {
  background-color: #006600;
  border: 0;
}button {
  background-color: #006600;
  border: 0;
}
button:hover {
  background-color: #00e600;
}
button:active {
  background-color: black;
}
button[disabled] {
  background-color: #b2b2b2;
}

button:hover {
  background-color: #00e600;
}
button:active {
  background-color: black;
}
button[disabled] {
  background-color: #333333;
}