-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
For example (from https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting/Using_CSS_nesting )
/* Without nesting selector */
.parent {
/* parent styles */
.child {
/* child of parent styles */
}
}
/* With nesting selector */
.parent {
/* parent styles */
& .child {
/* child of parent styles */
}
}
/* the browser will parse both of these as */
.parent {
/* parent styles */
}
.parent .child {
/* child of parent styles */
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels