Created
March 20, 2012 20:14
-
-
Save ackernaut/2140827 to your computer and use it in GitHub Desktop.
CSS: UA and Platform selectors
This file contains hidden or 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
html[data-useragent*='iPhone'] h1 { | |
color:blue; | |
} | |
html[data-platform='iPad'] h1 { | |
color:red; | |
} | |
/* See https://gist.github.com/2140799 for JS */ | |
/* Thanks, Rogie! http://rog.ie/post/9089341529/html5boilerplatejs */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment