Remove blue border from active input textbox in Chrome

On my website, there is a blue border around focused input textbox in Chrome and Opera browser. It doesn't look good. I would like to ask how to not show the blue border around input fields.
0
give a positive ratinggive a negative rating
31 May 2019 at 12:00 PM
Hi,

You can disable showing of the blue border around input, select and textarea fields by CSS:

input {
outline: none;
}

select {
outline: none;
}

textarea {
outline: none;
}


In case it will not work, you can try to use outline: none !important;
0
give a positive ratinggive a negative rating
01 Jun 2019 at 10:17 AM
Tim
Share on FacebookShare on TwitterShare on LinkedInSend email
x
x
2024 AnswerTabsTermsContact us