Hello i am trying to define columns on an article following this guide: https://getbootstrap.com/docs/4.1/layout/grid/
But it does not work. How can i make columns on an article using this template?
I cant use html table since its not responsive.
Here is my code:
<div class="container">
<div class="row">
<div class="col">Item 1</div>
<div class="col">Item 2</div>
<div class="col">Item 3</div>
</div>
<div class="row">
<div class="col">Item 4</div>
<div class="col">Item 5</div>
</div>
</div>
I get no columns at all not even a row.
Thanks.