Responsive containers are used to be 100% width until the breakpoint of that particular column has reached. For example, .container-sm is 100% wide to start until the sm breakpoint is reached, where it will range up with md, lg, xl, and xxl.
<div class='container-sm'>100% wide until small breakpoint</div>
<div class='container-md'>100% wide until medium breakpoint</div>
<div class='container-lg'>100% wide until large breakpoint</div>
<div class='container-xl'>100% wide until extra large breakpoint</div>
<div class='container-xxl'>100% wide until extra extra large breakpoint</div>
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Responsive containers are used to be 100% width until the breakpoint of that particular column has reached. For example, .container-sm is 100% wide to start until the sm breakpoint is reached, where it will range up with md, lg, xl, and xxl.
Below is an example for the responsive grid :
Hope this will help you.
Happy Coding!