Modern CSS
CSS nesting
Nesting improves readability when used carefully. Excessive nesting recreates historical CSS problems.
Good nesting
.product-card {
> .title {
margin: 0;
}
} Dangerous nesting
.page {
.wrapper {
.container {
.card {
.title {}
}
}
}
}