So I have a disagreement with another developer and I'm turning to the internet.
In Bootstrap 4, is it best practice to always wrap content in a container within a row and column even if the row would contain 1 column?
Which is of these examples is the better practice?
- with the row and column
<div class="container">
<-- other rows -->
<div class="row">
<div class="col">
<div><!-- content --></div>
</div>
</div>
<-- other rows -->
</div>
<div class="container">
<-- other rows -->
<div><!-- content --></div>
<-- other rows -->
</div>