I do have a question related to using in Bootstrap 4 Alpha.
Let's assume we need following html div structure
Box 50% width, Box 50% width
Box 50% width, Box 50% width
Box 50% width, Box 50% width
The, is it more appropriate to say
Variant 1:
<div class="row">
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
</div>
<div class="row">
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
</div>
<div class="row">
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
</div>
Or Variant 2:
<div class="row">
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
<div class="col-lg-6"></div>
</div>
As all of the examples on the Bootstrap page have row included by default, I couldn't tell whether this is also true for multiple elements.
Thanks for your help!