Skip to content

Instantly share code, notes, and snippets.

@caycefischer
Created February 18, 2013 17:59
Show Gist options
  • Save caycefischer/4979278 to your computer and use it in GitHub Desktop.
Save caycefischer/4979278 to your computer and use it in GitHub Desktop.
<style>
@media (min-width: 45em) {
body:after {
content: 'widescreen';
display: none;
}
}
</style>
<script>
var size = window.getComputedStyle(document.body,':after').getPropertyValue('content');
if (size == 'widescreen') {
// go nuts
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment