1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-03-16 04:10:01 +01: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
commit aedd4fffba
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 children */
/* Group any number of selectors to define styles that affect all selectors
in the group */
selector1, selector2 { }
/* ####################
## PROPERTIES
#################### */