This is useful if you want to apply common properties to multiple elements. Another useful application is adding style sheets from multiple sources. Example:
#head, #foot { height: 100px; } #foot { color: red; }
Second example: CSS from several sources:
body { background: yellow; } body { background: pink; }
If two properties have the same specificity, the last declared property will be applied.
Rob w source share