Skip to content

Instantly share code, notes, and snippets.

View bootsified's full-sized avatar
🤓

Boots Highland bootsified

🤓
View GitHub Profile
@bootsified
bootsified / test_media_queries_in_js.css
Last active August 29, 2015 14:05
Test CSS media query breakpoints in JS. Inspired by what I found here: http://adactio.com/journal/5429/
/* This is what I use near the top of my CSS stylesheet */
/* Mobile first! (767px and below) */
body:after {
display: none;
content: 'phone';
}
/* Small Devices, Tablets (kicks in at 768px) */
@media only screen and (min-width : 768px) {