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;
}
by enigmarm
<button>Test</button>
button {
border: none;
background-color: transparent;
outline: none;
}
button:focus {
border: none;
}