Remove border from HTML button

https://stackoverflow.com/questions/11497094/remove-border-from-buttons/11497117

by Glen Cheney

HTML

<div>
  <button class="unstyled-button">Unstyled Button</button>
</div>

<div>
  <button>Regular Button</button>
</div>

CSS

.unstyled-button {
  border: none;
  padding: 0;
  background: none;
}

div {
  margin: 20px 0;
}

JavaScript

/* Remove border from buttons */