JSFiddle - React, Tailwind, and code Playground
http://stackoverflow.com/questions/15342250/avoid-grey-background-on-ie-10-anchors
HTML
<a href="#">Background on :active</a>
<a href="#" class="no-bg">No background on :active</a>
CSS
a{
font-family: arial;
font-size: 14px;
margin-left: 20px;
}
.no-bg:active{
background-color: transparent;
}
html {
-webkit-tap-highlight-color: rgba(201, 224, 253, 0.8);
}