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

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -