If you’re using Modernizr, the no-touch class will be added to the root html element for non-touch devices. Then you can do this:
a.myclass {
color:#999;
}
.no-touch a.myclass:hover,
a.myclass:active {
color:#ccc;
}
If you’re using Modernizr, the no-touch class will be added to the root html element for non-touch devices. Then you can do this:
a.myclass {
color:#999;
}
.no-touch a.myclass:hover,
a.myclass:active {
color:#ccc;
}