Answers for "remove outline"

CSS
15

css remove border input focus

textarea:focus, input:focus{
    outline: none;
}
Posted by: Guest on June-30-2020
5

css remove outline

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

input outline focus

input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
}
Posted by: Guest on October-16-2020
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