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.
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;
1 answer