For example, I have next structure on my site
<div class="root">
<section class="first"></section>
<section class="second"></section>
<section class="third"></section>
<section class="fourth"></section>
</div>
And I have to wrap sections from second to fourth in bootstrap container. What is the correct way to do this? Wrap each section in separate container? Or create something like this :
<div class="root">
<section class="first"></section>
<div class="container">
<section class="second"></section>
<section class="third"></section>
<section class="fourth"></section>
</div>
</div>