Last active
December 29, 2015 16:19
-
-
Save furzeface/7696931 to your computer and use it in GitHub Desktop.
A quick little tip to help me see which query a device is using, adding an element on the page and in each media query, adding a string via the content attribute.
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
.query { | |
position:absolute; | |
top: 5px; | |
left: 5px; | |
} | |
.query:after{ | |
content: "[YOUR MEDIA QUERY HERE]"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment