I attempted to incorporate gutters into my Bootstrap grid layout, however, they are not showing up as expected. I am following the guidelines provided on the Bootstrap documentation, but for some reason, the gutters are not appearing.
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="53313c3c27202721322313667d617d60">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="container-sm text-center gy-6 gx-6">
<div class="row">
<div class="col">
<div class="p-3 bg-success">1x12</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="p-3 bg-danger">1x6</div>
</div>
<div class="col">
<div class="p-3 bg-danger">2x6</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="p-3 bg-warning">1x4</div>
</div>
... (reduced for brevity) ...
</body>
</html>
I have attached a screenshot of the current page I am working on. Could someone please help me identify where I might be making a mistake?
I have tried adjusting the gutter values using 'gy-6' and 'gx-6' in Bootstrap, but the issue persists regardless of the value I use.