I just found out about the Skeleton boilerplate, which uses grids. This is the css on github: https://github.com/dhgamache/Skeleton/blob/master/stylesheets/skeleton.css
The different column classes are layed out .one.columns, .two.columns, etc.
I’ve not seen this syntax in CSS before.
Am I right to assume that .one.columns {} is different from .one, .columns {} in that the former affects only elements with class="one columns" while the latter affects both elements with class="one" and class="columns"?
That is:
.one.columns = .one AND .columns
.one, .columns = .one OR .columns
.class1.class2 {}refers to all elements with both classesclass1andclass2..class1 .class2 {}refers to all elements with classclass2which are descendants of an element with classclass1..class1, .class2 {}refers to all elements with both/either classclass1and/or classclass2.