Manual reset

Recipe 4.3 Remove default button styles

Sample:

Code:

<style>
   button {
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
  }
</style>

<button type="button">
  Download
</button>