Skip to content

Instantly share code, notes, and snippets.

@martdn
Created November 11, 2015 07:44
Show Gist options
  • Save martdn/de5b1427060e09607759 to your computer and use it in GitHub Desktop.
Save martdn/de5b1427060e09607759 to your computer and use it in GitHub Desktop.
Grid 5 columns twitter bootstrap
section.page1 .container,
footer .container {
width: 780px;
}
/* Grid 5 columns */
.col-xs-1-5,
.col-sm-1-5,
.col-md-1-5,
.col-lg-1-5 {
position: relative;
min-height: 1px;
padding-right: 16px;
/*padding-left: 8px;*/
}
.col-xs-1-5 {
width: 20%;
float: left;
}
@media (min-width: 768px) {
.col-sm-1-5 {
width: 20%;
float: left;
}
}
@media (min-width: 992px) {
.col-md-1-5 {
width: 20%;
float: left;
}
}
@media (min-width: 1200px) {
.col-lg-1-5 {
width: 20%;
float: left;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment