transparent button

example of a transparent button & no focus styling

by enigmarm

HTML

<button>Test</button>

CSS

button {
    border: none;
    background-color: transparent;
    outline: none;
}
button:focus {
    border: none;
}