Hi, I’m trying to build a grid with 3 columns but I see the text in three different lines and not next to each other.
Can anyone tell me where is my mistake? Here is what I wrote:
<div class="container-fluid">
<div class="row">
<div class="col-md-4">Project 1</div>
<div class="col-md-4">Project 2</div>
<div class="col-md-4">Project 3</div>
</div>
</div>
Thank you!