Sometimes, we want to remove focus border (outline) around text/input boxes with CSS.
We’ll look at, how to remove focus border (outline) around text/input boxes with CSS, in this article.
How to remove focus border (outline) around text/input boxes with CSS?
First we set the outline property, to remove focus border (outline) around text/input boxes with CSS .
For instance, we can write
textarea:focus,
input:focus {
outline: none;
}
to remove the outline with outline: none;
, when we focus on the input or texterea.
Conclusion
Then we set the outline property, to remove focus border (outline) around text/input boxes with CSS .