Reputation: 307
I've encountered the following issue. When I try to enter something on an HTML site on mobile I get the following border:
around the input box. How do I avoid that?
Upvotes: 0
Views: 247
Reputation: 669
Remove the outline from the element.
input{
outline: none !important;
}
Upvotes: 2
Reputation: 1509
Although you haven't provided the code, the issue is being caused by the :focus
selector. To fix this, add the following to your CSS/ media query for mobile devices as well:
input:focus{
outline: none;
}
Upvotes: 2