For a Mobile first responsive site. I'm combining HTML5 Boiler plate and Mobile Boilerplate
I have one little question.
How to combine these 2 IE conditional statements into one?
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js"> <!--<![endif]-->
Did you try this one:
<!--[if (gt IE 8)|((gt IEMobile 7)|!(IEMobile))]><!-->
<html class="no-js">
<!--<![endif]-->
As far I know it should be possible to add another pair of brackets and combine them with an or
operator.
By the way I don't think that it is a good idea to manipulate in this way the html
tag.