Problem Statement
Describe the difference between .container and .container-fluid in layout building.
Explanation
.container provides a fixed-width layout that changes with breakpoints, making content centered with side padding. .container-fluid always takes the full width of the viewport. Choose .container for traditional centered designs and .container-fluid for edge-to-edge layouts.
Code Solution
SolutionRead Only
<div class='container'>Fixed</div><div class='container-fluid'>Full width</div>
