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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -