Skip to content

Instantly share code, notes, and snippets.

@YasinKuralay
Last active October 4, 2021 14:52
Show Gist options
  • Save YasinKuralay/7db3ebec89df2c1058e1705f26a9f755 to your computer and use it in GitHub Desktop.
Save YasinKuralay/7db3ebec89df2c1058e1705f26a9f755 to your computer and use it in GitHub Desktop.
Remove Button Styles
button {
background: transparent;
box-shadow: 0px 0px 0px transparent;
border: 0px solid transparent;
text-shadow: 0px 0px 0px transparent;
}
button:hover {
background: transparent;
box-shadow: 0px 0px 0px transparent;
border: 0px solid transparent;
text-shadow: 0px 0px 0px transparent;
}
button:active {
outline: none;
border: none;
}
/* You probably need to have some alternative focus styling if you want to remove the outline on focus */
button:focus {
outline: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment