I want to have the lower part of a webpage to be full width (in a container-fluid div), as opposed to the top part of the page, which is in a conventional class="container" div.
However, with the following html, my lower div is not full-width:
<div class="container">
Restricted width
</div>
<div class="container-fluid">
Full-width
</div>
If I make the top div fluid too, both become fluid. But why can't I have a fluid container below a non-fluid container?