Prevent The Default Blue Selection On Click
As a normal website, when I develop website as a native android application, There is a blue rectangle selection on the area I clicked after the click like a normal site while surf
Solution 1:
Use the following CSS:
a {
outline: 0;
}
For what it's worth, that border is there for accessibility, so if that is important to you, you may wish to consider keeping it.
Post a Comment for "Prevent The Default Blue Selection On Click"