1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-17 20:11:57 +02:00

Merge pull request #3121 from erikarvstedt/patch-2

[css/en] add selector groups
This commit is contained in:
Divay Prakash
2018-09-08 18:20:59 +05:30
committed by GitHub

View File

@@ -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
#################### */