home ~ projects ~ socials

Clear An HTML Button's Styles With CSS

CSS

.exampleButton {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  outline: inherit;
  padding: 0;
}
-- end of line --