Tip #2 : Reset a button's style
This tip is not something that I struggled with on the past, it's more of something that I use often and provides a clean slate to build awesome buttons.
button {
padding: 0;
background: none;
border-radius: 0;
border: none;
cursor: pointer;
}
That's it :) Have fun making amazing buttons!
No Comments Yet