Buttons
Native buttons and links styled as buttons.
The .button class gives the same treatment as a native <button> element, so it can be applied to links or any clickable element. Native <button> elements are styled the same way without the class.
Native button
<button type="button">Button</button>
Link styled as a button
<a href="#" class="button">Link button</a>
Disabled
<button type="button" disabled>Disabled</button>