html - Can we apply tap-highlight-color to any other element except anchor tag? -
<!doctype html> <html> <head> <style type="text/css"> span { font-size: 40px; } .tap-color { -webkit-tap-highlight-color: blue; } </style> </head> <body> <span class="tap-color">hello</span> </body> </html>
fiddle: http://202.63.105.91/tapcolor/
i'm trying apply tap-highlight-color other elements except anchor element. in application of clickable elements not anchor , want tap-highlight-color on them. kindly check code have tried far , let me know if possible. working example appreciated.
thank in advance.
Comments
Post a Comment