Answers for "how to remove outline of text box in css"

CSS
1

remove outline of input css

.sidebar_searchcontainer > input {
    border:none;
    outline-width: 0;
}
Posted by: Guest on April-25-2021
6

css remove outline

element{outline:none;}
Posted by: Guest on December-29-2019

Browse Popular Code Answers by Language