Responsive breakpoints help your website look good on all devices by changing layout and style based on screen size.
Why responsive breakpoints matter in Bootsrap
/* Bootstrap uses these breakpoint classes for layout and visibility */ /* Extra small devices (portrait phones, less than 576px) */ No breakpoint needed, default applies /* Small devices (landscape phones, 576px and up) */ .sm /* Medium devices (tablets, 768px and up) */ .md /* Large devices (desktops, 992px and up) */ .lg /* Extra large devices (large desktops, 1200px and up) */ .xl /* Extra extra large devices (larger desktops, 1400px and up) */ .xxl
Bootstrap breakpoints are used as suffixes in class names like .col-md-6 or .d-lg-none.
They help you control layout and visibility at different screen widths.
<div class="col-12 col-md-6">Content</div>
<button class="d-none d-sm-block">Click me</button>
<div class="container-lg">Content</div>
This example shows two columns that stack on small screens and sit side by side on medium and larger screens. It also shows buttons that appear or hide depending on screen size.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Responsive Breakpoints Example</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" /> </head> <body> <header class="bg-primary text-white p-3 text-center"> <h1>Responsive Breakpoints Demo</h1> </header> <main class="container mt-4"> <div class="row"> <div class="col-12 col-md-8 bg-light p-3"> <p>This column is full width on small screens and 8/12 width on medium and larger screens.</p> </div> <div class="col-12 col-md-4 bg-secondary text-white p-3"> <p>This column stacks below on small screens and sits beside on medium and larger screens.</p> </div> </div> <button class="btn btn-success mt-3 d-none d-sm-inline">Visible on small screens and up</button> <button class="btn btn-danger mt-3 d-inline d-sm-none">Visible only on extra small screens</button> </main> </body> </html>
Use the browser's developer tools to resize the window and see how the layout changes.
Breakpoints help make your site easy to use on phones and big screens without extra work.
Responsive breakpoints let your site adapt to different screen sizes.
Bootstrap provides easy classes to control layout and visibility at these breakpoints.
Testing on different devices or resizing your browser helps you see breakpoints in action.