Skip to content

Instantly share code, notes, and snippets.

@texas2010
Last active September 3, 2020 03:30
Show Gist options
  • Save texas2010/f27002712c0a3dd91422439eddd26488 to your computer and use it in GitHub Desktop.
Save texas2010/f27002712c0a3dd91422439eddd26488 to your computer and use it in GitHub Desktop.
Responsive breakpoints
/* Extra small devices (portrait phones, less than 576px) */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment