diff options
author | Ev Bogdanov <evbogdanov.com@gmail.com> | 2018-09-08 21:09:42 +0300 |
---|---|---|
committer | Ev Bogdanov <evbogdanov.com@gmail.com> | 2018-09-08 21:09:42 +0300 |
commit | 0799909efb0392cf1a2d42e5cad3439449fa9ddc (patch) | |
tree | 963a666e664cd3f74adbca6bef593ce66d4c2f5b /css.html.markdown | |
parent | b622673dae3441f1260401fbb44d90e0e4aea6a2 (diff) | |
parent | 49a2bf306fcf365192934d006a244a9033909850 (diff) |
Merge remote-tracking branch 'upstream/master' into jquery-ru
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 #################### */ |