Skip to content

Instantly share code, notes, and snippets.

@eto4detak
Created February 23, 2018 09:28
Show Gist options
  • Save eto4detak/0b2534c59d189d715c79a069791b3206 to your computer and use it in GitHub Desktop.
Save eto4detak/0b2534c59d189d715c79a069791b3206 to your computer and use it in GitHub Desktop.
css media
@media (max-width: 576px){
.container{
max-width: none;
}
}
@media (min-width: 576px){
.container{
max-width: 540px;
}
}
@media (min-width: 768px){
.container{
max-width: 720px;
}
}
@media (min-width: 992px){
.container{
max-width: 960px;
}
}
@media (min-width: 1200px){
.container{
max-width: 1140px;
}
}
@media (min-width: 1600px){
.container{
max-width: 1500px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment