Skip to content

Instantly share code, notes, and snippets.

@cesarkohl
Last active September 11, 2015 17:15
Show Gist options
  • Select an option

  • Save cesarkohl/26c15807ac1d8ce7fa0d to your computer and use it in GitHub Desktop.

Select an option

Save cesarkohl/26c15807ac1d8ce7fa0d to your computer and use it in GitHub Desktop.
css @media bootstrap
/**
* Media: Larger than
*/
@media (min-width: 1200px){
}
@media (min-width: 992px){
}
@media (min-width: 768px){
}
@media (min-width: 480px){
}
/**
* Media: Smaller than
*/
@media (max-width: 1200px){
}
@media (max-width: 992px){
}
@media (max-width: 768px){
}
@media (max-width: 480px){
}
/**
* Media: Specific widths
*/
@media screen and (min-width: 993px) and (max-width: 1199px) {
}
@media screen and (min-width: 769px) and (max-width: 992px) {
}
@media screen and (min-width: 481px) and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment