Today I was browser testing one of my clients new sites. When I got to IE10 the normal conditional comments didn’t have any effect on it. Strange, I thought. After a quick search I found this StackOverflow question that provides many solutions. Of all the solutions this is the one I chose.
/* ie10 styles */ @media all and (-ms-high-contrast: none) { ... }
It doesn’t require any jQuery, JavaScript or browser detection. It still is, however, a hack, but whatever.
Leave a Reply