Skip to content

Instantly share code, notes, and snippets.

@fnhipster
Created August 14, 2013 15:53
Show Gist options
  • Save fnhipster/6232386 to your computer and use it in GitHub Desktop.
Save fnhipster/6232386 to your computer and use it in GitHub Desktop.
Responsive breakpoitns
@media only screen and (min-width: 768px) {
/* tablets and desktop */
}
@media only screen and (max-width: 767px) {
/* phones */
}
@media only screen and (max-width: 767px) and (orientation: portrait) {
/* portrait phones */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment