Whats is difference between container and container-fluid in Bootstrap?
Asked
Active
Viewed 3,458 times
-3
-
1Possible duplicate of [Fluid or fixed grid system, in responsive design, based on Twitter Bootstrap](https://stackoverflow.com/questions/9780333/fluid-or-fixed-grid-system-in-responsive-design-based-on-twitter-bootstrap) – Rich Churcher Dec 03 '17 at 07:07
1 Answers
4
Have you read the documentation? https://getbootstrap.com/docs/3.3/css/#overview-container
Use
.container
for a responsive fixed width container.Use
.container-fluid
for a full width container, spanning the entire width of your viewport.