diff options
Diffstat (limited to 'css.html.markdown')
| -rw-r--r-- | css.html.markdown | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/css.html.markdown b/css.html.markdown index 3b378d44..64dc097c 100644 --- a/css.html.markdown +++ b/css.html.markdown @@ -135,6 +135,10 @@ selector::after {}  .parent * { } /* all descendants */  .parent > * { } /* all children */ +/* Group any number of selectors to define styles that affect all selectors +   in the group */ +selector1, selector2 { } +  /* ####################     ## PROPERTIES     #################### */ | 
