The following code works fine at certain resolutions but when I squeeze the browser down, the col-xs-1
gets pushed to the next line. This code is very plain and simple, I'm not sure what is wrong here.
It seems the bootstrap
width percentages are off by a tiny amount.
<div class="container-fluid">
<div class="row">
<div class="col-xs-3">
3
</div>
<div class="col-xs-8">
8
</div>
<div class="col-xs-1">
1
</div>
</div>
</div>