Home > Net >  Bootstrap 5.2 grid is taking whole width
Bootstrap 5.2 grid is taking whole width

Time:08-30

I'm trying to implement this grid wrapping from Bootstrap 5.2 documentation.

<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>

<div >
  <div >.g-col-4</div>
  <div >.g-col-4</div>
  <div >.g-col-4</div>
</div>

My expectations were that there would be three columns that are equally sized but as you see here, each .g-col-4 spans the whole width instead of a third of it. What am I doing wrong here?

CodePudding user response:

Grid is opt-in. You need to enable the CSS Grid by setting $enable-cssgrid: true.

  • Related