Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created November 27, 2013 16:06
Show Gist options
  • Select an option

  • Save kopiro/7678225 to your computer and use it in GitHub Desktop.

Select an option

Save kopiro/7678225 to your computer and use it in GitHub Desktop.
A middle container for BOOTSTRAP 3
.container-middle {
@media (min-width: 768px) { width: 375px; }
@media (min-width: 992px) { width: 485px; }
@media (min-width: 1200px) { width: 585px; }
}
.container-middle-right {
float: left;
@media (max-width: 767px) { float: none; }
}
.container-middle-left {
float: right;
@media (max-width: 767px) {float: none; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment