Currently, I am delving into the realm of Bootstrap 5 and have recently put together a simplistic webpage using the row/column structure suggested by Bootstrap. However, while my other columns seem to be cooperating and displaying the gutter padding as expected, one particular column, defined as content1
and holding two "posts," seems to be missing the said padding. I've shared my HTML and CSS codes below for reference.
To view the Bootstrap 5 webpage in question, feel free to visit the following link: View Here
Furthermore, included below is the CSS code snippet:
.header1 {
background:#ededed;
border-bottom:1px solid #ddd;
}
.content1 {
padding:40px 0;
}
.post {
background:#ffe6fa;
margin-bottom:30px;
}
.sidebar1 {
padding:40px 0;
}
#widget1, #widget2, #widget3 {
background:rgb(233, 250, 205);
padding:30px;
margin-bottom:30px;
}
.footer1 {
background:#000;
color:#fff;
}
I would greatly appreciate any insights you might have on where I may have gone wrong in my coding. Why is the gutter padding not showing up for the column labeled as "content1" in Bootstrap?
Thank you in advance for your assistance.