-
-
Save kmiyashiro/1140425 to your computer and use it in GitHub Desktop.
HTML5 Boilerplate Conditional comments in Jade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! 5 | |
//if lt IE 7 | |
html(class="no-js ie6 oldie", lang="en") | |
//if IE 7 | |
html(class="no-js ie7 oldie", lang="en") | |
//if IE 8 | |
html(class="no-js ie8 oldie", lang="en") | |
// [if gt IE 8] <! | |
html(class="no-js", lang="en") | |
// <![endif] | |
head | |
title= title | |
body!= body |
please do note that this behaviour has been ripped out of jade now...
Now, you have to just use this:
<!--[if lt IE 8]>
link(rel='stylesheet', href='style-ie8.css')
<![endif]-->
Can you please define 'now'?
Which versions are concerned by the // IE 8
syntax and which are not?
Thanks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice improvement @jwerre -- have you attempted to remove the unwanted white space between these at all? I'm fairly confident there isn't really a way to do it, but if there is I'd love to find out as I'm completely OCD about stuff like that :)