Here is an example that I do not understand:
.container_12 .grid_6,
.container_16 .grid_8 {
width: 460px;
}
It seems to me that width: 460px
is applied to all above mentioned classes. But why some classes are separated by coma (,
) and some just by space?
I assume that width: 460px
will be applied only to those elements which combine classes in the way mentioned in the css file. For example, it will be applied to <div class='container_12 grid_6'>
but it will not be applied to the <div class='container_12'>
. Is this assumption correct?