home ~ socials ~ projects ~ rss

Clear An HTML Button's Styles With CSS

January 2025

Output

HTML

<button class="exampleButton">Example</button>

CSS

.exampleButton {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  outline: inherit;
  padding: 0;
}
end of line
Share link:
https://www.alanwsmith.com/en/2r/v4/4g/6t/?clear-an-html-button-s-styles-with-css