I can't seem to figure out how to add a right margin to separate these div
elements without the second one moving to a new line. It's probably something simple that I'm missing.
https://codepen.io/jvern22/pen/GwQpgZ
My layout consists of 2 rows with 4 columns each, in this structure;
<div class="row">
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
</div>
I haven't specified whether the elements are block
or inline
.
There's definitely something I'm overlooking here.