Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Bootstrap Grid Structure (Basic Layout)

The grid system consists of three main components:

  • Container (.container) – Wraps everything.
  • Row (.row) – Groups columns together.
  • Columns (.col-) – Defines width and positioning.

Example: Basic Bootstrap Grid

HTML
<div class="container">
  <div class="row">
    <div class="col bg-primary text-white">Column 1 (6/12)</div>
    <div class="col bg-success text-white">Column 2 (6/12)</div>
  </div>
</div>

Output:

Explanation:

  • .col means each column gets an equal share of the space.
  • 2 columns → Each takes 2/12 (50%).