gridview - Bootstrap 3 grid, set 1 column size for all displays -
in bootstrap v3, column sizes declared different screen sizes..
<div class='container'> <div class='row'> <div class='col-md-6 col-lg-6 col-sm-6'>
i find myself needing 1 size display types.. , thought like
<div class='col-6'>
where no matter display size user on, keep width of column 6/12 of grid system.. doesn't seem work. missing?
the correct answer sizes <div class='col-sm-6'>
. suggested other answers, apply larger it.
there fourth size, though, xs
, using <div class='col-xs-6'>
apply every possible size.
Comments
Post a Comment