Answers for "remove outline texta html"

CSS
2

remove outline of input css

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

remove outline

#content #main-content input[type=text]{
   border: 0;
   border: 1px solid #ccc;
   height: 40px;
   padding-left: 10px;
   outline: 0;
 }
Posted by: Guest on September-01-2021

Browse Popular Code Answers by Language