Reputation: 1768
How to eliminate "click effect " on < img > element in chrome(android system) by CSS.
When I put an element on a webpage. Every time when I click it in my android chrome, a light green rectangle covers that img. I don't want this 'click effect', how to eliminate it?
Upvotes: 2
Views: 148
Reputation: 1768
I found the answer my self. That is because of the cursor property set to "pointer". {cursor: pointer}.
Upvotes: 1