diff options
author | John Gabriele <jgabriele@fastmail.fm> | 2018-09-10 02:05:03 -0400 |
---|---|---|
committer | John Gabriele <jgabriele@fastmail.fm> | 2018-09-10 02:05:03 -0400 |
commit | 3cfdf5777266d780a211cdad1c52755170097cc8 (patch) | |
tree | 8a269e1679f14ceac7a10c0592fa14bb947e5208 /css.html.markdown | |
parent | 60eac5d50054ddae92bd23fb51f3acc1c306a762 (diff) | |
parent | 6d087ae0f289e7013807639cbd609f991f968166 (diff) |
Merge remote-tracking branch 'origin/master' into patch-1
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 #################### */ |