Created
December 1, 2014 05:04
-
-
Save kanakiyajay/15e4fc98248956614643 to your computer and use it in GitHub Desktop.
Seven Equal Columns in bootstrap.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (min-width: 768px) { | |
.seven-cols .col-md-1, | |
.seven-cols .col-sm-1, | |
.seven-cols .col-lg-1 { | |
width: 100%; | |
} | |
} | |
@media (min-width: 992px) { | |
.seven-cols .col-md-1, | |
.seven-cols .col-sm-1, | |
.seven-cols .col-lg-1 { | |
width: 14.285714285714285714285714285714%; | |
} | |
} | |
@media (min-width: 1200px) { | |
.seven-cols .col-md-1, | |
.seven-cols .col-sm-1, | |
.seven-cols .col-lg-1 { | |
width: 14.285714285714285714285714285714%; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row seven-cols"> | |
<div class="col-md-1">Col 1</div> | |
<div class="col-md-1">Col 2</div> | |
<div class="col-md-1">Col 3</div> | |
<div class="col-md-1">Col 4</div> | |
<div class="col-md-1">Col 5</div> | |
<div class="col-md-1">Col 6</div> | |
<div class="col-md-1">Col 7</div> | |
</div> | |
</div> |
thanks, very uesful !
Perfect!
for bootstrap 4 which uses flex you have to add
max-width: 14.285714285714285714285714285714% !important;
flex:none !important;
Thanks for Bootstrap 4 update!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
when utilizing hubspot, where do you place this information?