Answers for "html css how to make button not focusable"

CSS
7

diable focus button css

*:focus {
    outline: 0 !important;
}
Posted by: Guest on June-12-2020
0

not focus css

input:not(:focus), button:not(:focus) {
    /* Styles for only form inputs and buttons that do not have focus */
}
Posted by: Guest on September-01-2021

Code answers related to "html css how to make button not focusable"

Browse Popular Code Answers by Language