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