css: add selector groups

This commit is contained in:
erikarvstedt 2018-05-07 12:47:20 +02:00 committed by GitHub
parent 71389bd423
commit 50021745fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,6 +135,10 @@ selector::after {}
.parent * { } /* all descendants */ .parent * { } /* all descendants */
.parent > * { } /* all children */ .parent > * { } /* all children */
/* Group any number of selectors to define styles that affect all selectors
in the group */
selector1, selector2 { }
/* #################### /* ####################
## PROPERTIES ## PROPERTIES
#################### */ #################### */