I'm trying to create a bootstrap grid where every row has to columns, bootstrap has a class that does this, row-cols-*, but when I place the example on bootstrap website in a jsfiddle it doesn't break row like it is supposed to do. What am I doing wrong?
HTML:
<div class="container">
<div class="row row-cols-2 text-white">
<div class="col border bg-primary">Column</div>
<div class="col border bg-primary">Column</div>
<div class="col border bg-primary">Column</div>
<div class="col border bg-primary">Column</div>
</div>
</div>