Answers for "remove border from button when clicked in c#"

CSS
3

how to get rid of button outline when clicked

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

remove borders from circule button

selector {

 outline:none;

}
Posted by: Guest on April-19-2021

Code answers related to "remove border from button when clicked in c#"

Browse Popular Code Answers by Language