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
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;
Share on FacebookShare on TwitterShare on LinkedInSend email
1 answer
x
x
2024 AnswerTabsTermsContact us