Modern CSS
2024
Nested CSS
.card {
padding: 1rem;
> h2:first-child {
margin-block-start: 0;
}
footer {
border-block-start: 1px solid black;
}
@container (min-inline-size: 250px) {
gap: 2rem;
}
body.home & { /* totally fine */ }
& .footer { /* totally fine, don't even need the & */
&__big { /* nope, can't do this */ }
}Scoping
Cascade Layers
Logical Properties
:has pseudo class selector
:is pseudo class selector
align-content Property
Last updated