Responsive Container Breakpoint
Preview
Code
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"> </head> <body> <div class="container-md bg-secondary text-white py-5"> <h2>Container MD</h2> <p>This container becomes full width until the md breakpoint.</p> </div> </body> </html>