Hi I would like to reach this output with bootstrap 3.7:
Assume boxes are :
1.) centered in row
2.) equal in size
3.) equal spacing between them.
HTML
<div id="header" class="container-fluid">
<div class="row">
<div class="col-md-4 codexBox"></div>
<div class="col-md-4 codexBox"></div>
<div class="col-md-4 codexBox"></div>
</div>
</div>
I would happily adjoin my SCSS yet after so many trials from margins, col wrappers, paddings first/last :not I couldn't find a viable solution that would 'hold water', as the expression goes.
Flex would be happily consumed here as long as it would be responsive through bootstrap grid cols.