mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
css: add selector groups
This commit is contained in:
parent
71389bd423
commit
50021745fa
@ -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
|
||||||
#################### */
|
#################### */
|
||||||
|
Loading…
Reference in New Issue
Block a user