I'm currently in the process of learning about the Bootstrap grid system. I've implemented the following HTML code to create a row with three columns:
<body>
<div class="container">
<div class="row">
<div class="col-4">
left column
</div>
<div class="col-4">
middle column
</div>
<div class="col-4">
right column
</div>
</div>
</div>
My understanding is that this code should display three columns horizontally in the same row, but for some reason, they are stacking vertically in Chrome. Does anyone have any insight into why this might be happening?