I am using this CSS
.reasonButton:focus{
color: #fff;
background-color: #676666;
border-color: #adadad;
outline: none;
}
Can anybody help me with this problem? Thanks
I am using this CSS
.reasonButton:focus{
color: #fff;
background-color: #676666;
border-color: #adadad;
outline: none;
}
Can anybody help me with this problem? Thanks
Share Improve this question asked Feb 8, 2018 at 12:11 user8539115user85391152 Answers
Reset to default 11.btn:focus {
outline: none !important;
outline-offset: none !important;
}
In my case, It was solved by using the above code
button:focus {
box-shadow: none !important;
}