Skip to content

Instantly share code, notes, and snippets.

@amilabandara
Created December 20, 2017 02:29
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save amilabandara/22861dab8604ce55c33c7c9aa9919d20 to your computer and use it in GitHub Desktop.
Save amilabandara/22861dab8604ce55c33c7c9aa9919d20 to your computer and use it in GitHub Desktop.
7 Column gird with Bootstrap 4
<style type="text/css">
@media (min-width: 768px){
.seven-cols .col-md-1,
.seven-cols .col-sm-1,
.seven-cols .col-lg-1 {
width: 100%;
*width: 100%;
}
}
@media (min-width: 992px) {
.seven-cols .col-md-1,
.seven-cols .col-sm-1,
.seven-cols .col-lg-1 {
width: 14.285714285714285714285714285714%;
*width: 14.285714285714285714285714285714%;
max-width: 14.285714285714285714285714285714% !important;
flex:none !important;
}
}
@media (min-width: 1200px) {
.seven-cols .col-md-1,
.seven-cols .col-sm-1,
.seven-cols .col-lg-1 {
width: 14.285714285714285714285714285714%;
*width: 14.285714285714285714285714285714%;
max-width: 14.285714285714285714285714285714% !important;
flex:none !important;
}
}
</style>
<div class="row seven-cols">
<div class="col-md-1"></div>
<div class="col-md-1"></div>
<div class="col-md-1"></div>
<div class="col-md-1"></div>
<div class="col-md-1"></div>
<div class="col-md-1"></div>
<div class="col-md-1"></div>
</div>
@ImSandeepMishra
Copy link

This is what I was looking for. Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment