Skip to content

Instantly share code, notes, and snippets.

@robinpokorny
Last active December 21, 2015 00:39
Show Gist options
  • Save robinpokorny/6221618 to your computer and use it in GitHub Desktop.
Save robinpokorny/6221618 to your computer and use it in GitHub Desktop.
grunt-legacssy demo
grunt.loadNpmTasks('grunt-legacssy');
grunt.initConfig({
legacssy: {
files: {
'css/style-legacy.css': 'css/style.css',
},
},
})
<!--[if lte IE 8]> <link rel="stylesheet" href="css/style-legacy.css"> <![endif]-->
<!--[if gt IE 8]><!--> <link rel="stylesheet" href="css/style.css"> <!--<![endif]-->
body {
margin: 0;
padding: 0;
}
h1 {
font-weight: bold;
}
body {
margin: 0;
padding: 0;
}
@media only screen and (min-width: 768px) {
h1 {
font-weight: bold;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment