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

Introduction to Bootstrap 5 Flexbox

What is Flexbox?

Flexbox is a layout system used to create flexible and responsive designs without using floats or positioning.

Why use Flexbox?

  • Easily align elements horizontally & vertically
  • Create equal-height columns
  • Control spacing and order
  • Works great for responsive layouts

Example: Basic Flexbox Class

HTML
<div class="d-flex">
  <div class="p-3 bg-primary text-white">Flex Item 1</div>
  <div class="p-3 bg-success text-white">Flex Item 2</div>
</div>

Output:

d-flex makes the container a flexbox.