I'm facing some challenges while creating a website using Bootstrap. I've encountered an issue where the columns in a row stack on top of each other when the screen size is reduced.
Here is my current code:
<div class="row">
<div class="col-xs-4 col-sm-4 col-md-4"><center>Feed</center></div>
<div class="col-xs-4 col-sm-4 col-md-4"><center>Tutor</center></div>
<div class="col-xs-4 col-sm-4 col-md-4"><center>Profile</center></div>
</div>
I'm not sure what I'm missing here. Even after resizing my browser, the columns still wrap onto a new line. Any assistance would be greatly appreciated!