Answers for "change size of column in bootstrap"

1

col-md-6 bootstrap

<div class="col-lg-2 col-md-4 col-sm-3 "> Your Stuffs </div>

/*
col-lg  for large

col-md for med 

col-sm for small 

enjoy :) 
*/
Posted by: Guest on November-03-2020
0

bootstrap change column width

.col-sm-3half, .col-sm-8half {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-sm-3half, .col-sm-8half {
        float: left;
    }
    .col-sm-3half {
        width: 29.16666667%;
    }
    .col-sm-8half {
        width: 70.83333333%;
    }
}
Posted by: Guest on April-04-2020

Code answers related to "change size of column in bootstrap"

Browse Popular Code Answers by Language