I am learning CSS and have come across to this lesson in W3school. I am struggling to understand what are the purposes of having so many column classes in grid view:
....
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
......
And why the two div
elements are put inside colulmn-3
and colulmn-9
, why others are skipped?
<div class="col-3">
<ul>
......
</ul>
</div>
<div class="col-9">
.....