how can I make a table in bootstrap / css to display a number of cells on columns and rows? For example 7 columns and 7 rows of cells Something like this
I tried with this
<div class="container">
<div class="row">
<div class="col-sm">
1
</div>
<div class="col-sm">
1
</div>
<div class="col-sm">
1
</div>
</div>
</div>
but I don't really realize how I could position the lines, I don't have much experience in css.