Bootstrap uses a 12-cell system, so if you need to split by seven, you can add your own mesh split,
so you can make a type selector .col-seventh{width: calc (100% / 7)}
so you can create a new mesh type:
.col-seventh-1{width: 14.285714%;}
.col-seventh-2{width: 28.571428%;}
.col-seventh-3{width: 42.857142%;}
.col-seventh-4{width: 57.142857%;}
.col-seventh-5{width: 71.428571%;}
.col-seventh-6{width: 85.714285%;}
.col-seventh-7{width: 100%;}
Instead, you can also use the flexboxes css3 layout (non-bootstrap) property to do it all for you!
source
share