Bootstrap 3 grid, set 1 column size for all displays
gridview, size, twitter-bootstrap
Solution
The correct answer for those sizes is `<div class='col-sm-6'>`. This will apply to `sm` and everything larger than it.
However, there is a fourth size - `xs` - so using `<div class='col-xs-6'>` would apply to every possible size.
Problem
In bootstrap v3, the column sizes are declared for different screen sizes.. ``` <div class='container'> <div class='row'> <div class='col-md-6 col-lg-6 col-sm-6'> ``` I often find myself just needing 1 size for all display types.. and i thought this would be something like ``` <div class='col-6'> ``` where no matter what display size the user is on, just keep the width of the column 6/12 of the grid system.. but this doesn't seem to work. What am I missing?