0
What are Containers in Bootstrap? How many types of containers are there in the Bootstrap?
What are Containers in Bootstrap? How many types of containers are there in the Bootstrap?
The container class is the default layout in Bootstrap. This class has written some predefined margins. And there are 5 types of classes used in the container class.
Syntax
<div class='container'>
other tags
</div>
The container-fluid class in the bootstrap is used for a full-width container, it takes the entire width of the viewport.
Syntax
<div class='container-fluid'>
other tags
</div>