Answers for "add focus outline for a button having outline=none"

CSS
1

css focus outline none

*:focus {
    outline: none;
}
Posted by: Guest on May-07-2021
1

input outline focus

input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
}
Posted by: Guest on October-16-2020

Code answers related to "add focus outline for a button having outline=none"

Browse Popular Code Answers by Language