Need help..!

Hey @chrisdavidmills, I am back again… :sweat_smile:

Actually,I was studying Legacy layout methods
I need some explanation about the following
why CSS rule has .col.span4 format, What does it mean ??
is it the same as .colspan4??

examples
col.span4 { width: 300px; }
.col.span5 { width: 380px; }
.col.span6 { width: 460px; }
.col.span7 { width: 540px; }

Link:
https://github.com/mdn/learning-area/blob/master/css/css-layout/grids/simple-grid-finished.html
Good Day…!!

@Coder_In_Progress .col.span4 selects an element that has both a class of col and a class of span4.

See this section for more information.

Ohh Ohk…Got it…!!

Thanks…