Mobile app version of vmapp.org
Login or Join
Goswami781

: Disabling highlighted search box I made a search box using input html tag but while inputting when I click on the search box it is highlighted with blue border. How do I remove it ? Thanks

@Goswami781

Posted in: #Css #Css3 #Html5 #WebsiteDesign

I made a search box using input html tag but while inputting when I click on the search box it is highlighted with blue border. How do I remove it ?
Thanks

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Goswami781

1 Comments

Sorted by latest first Latest Oldest Best

 

@Hamaas447

Without seeing your code it is hard to give you an exact answer, but it will be something like

textarea:focus, input:focus{
outline: none;
}


But this covers your entire site, so you might want to be more specific using a class or ID if you only want to alter that specific field.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme