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?