As I dive into creating a Bootstrap grid website to expand my knowledge, I am following the guidelines provided here. Trying to replicate the examples from that page has led me to the first hurdle.
The issue arises when dealing with columns without specified sizes. The expected behavior is for them all to evenly fill up a row. However, my result looks different than anticipated:
https://i.sstatic.net/Ag3oc.png
I made minimal adjustments to the HTML/CSS structure by adding colors and some padding. Here is the additional CSS code I implemented:
.row{
/*background-color: lightblue;*/
border: 3px solid rgba(86,61,124,.2);
}
.row>.col{
padding-top: .75rem;
padding-bottom: .75rem;
background-color: rgba(86,61,124,.15);
border: 1px solid rgba(86,61,124,.2);
}
All necessary Bootstrap CSS, js, and jQuery resources are sourced from the recommended w3schools CDN.
I'm puzzled as to why my columns won't stack uniformly like in the example. Any assistance would be greatly appreciated.