Skip to content

Instantly share code, notes, and snippets.

@atelierbram
Created January 11, 2014 22:24
Show Gist options
  • Save atelierbram/8377807 to your computer and use it in GitHub Desktop.
Save atelierbram/8377807 to your computer and use it in GitHub Desktop.
CSS: User Agent Selectors
<html>
<head> … </head>
<body>
<!-- http://rog.ie/blog/html5-boilerplate-addon -->
<script>
var b = document.documentElement;
b.setAttribute('data-useragent', navigator.userAgent);
b.setAttribute('data-platform', navigator.platform );
b.className += ((!!('ontouchstart' in window) || !!('onmsgesturechange' in window))?' touch':'');
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment