Auto wrap with col does not work in Safari
Created by: iFlash
This code will not auto wrap in Safari 10.0.3 (OSX 10.12).
Basically using class="col" in order to auto wrap columns will not work. The columns are displayed outside page margins.
Chrome and FF behave as expected.
<div class="container-fluid">
<div class="row">
<div class="col"><small>Some text here</small></div>
<div class="col"><small>Some text here</small></div>
<div class="col"><small>Some text here</small></div>
.... add more columns until they should wrap
<div class="col"><small>Some text here</small></div>
<div class="col"><small>Some text here</small></div>
</div>
</div>