Answer the question
In order to leave comments, you need to log in
How to put 12 columns 5 blocks in bootstrap grid?
prntscr.com/ggx1wy 12/5=2.4. col-md-2.4 can't be written like that?
Answer the question
In order to leave comments, you need to log in
You can do for example:
<div class="row">
<div class="col-xs-2 col-xs-offset-1"></div>
<div class="col-xs-2"></div>
<div class="col-xs-2"></div>
<div class="col-xs-2"></div>
<div class="col-xs-2"></div>
</div>
scss to the rescue
/* =======================================================
Responsive 5 Columns Grid
======================================================= */
.col-lg-2-4{
@include make-lg-column(2.4)
}
.col-md-2-4{
@include make-md-column(2.4)
}
.col-sm-2-4{
@include make-sm-column(2.4)
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question