Problem Statement
Explain the difference between .container and .container-fluid classes.
Explanation
.container provides a fixed-width layout that adapts to breakpoints, while .container-fluid always spans the full width of the viewport. Use .container for centered content and .container-fluid when you need a layout that covers the entire screen width.
Code Solution
SolutionRead Only
<div class='container'>Centered content</div> <div class='container-fluid'>Full width content</div>
