Version 0.7.0
Pre-release
Pre-release
Nested Selectors
The CSS nesting module and the nesting selector are now supported. For example, the following CSS:
main {
display: flex;
& section {
content: 'A';
}
.message:is(.warning) {
color: orange;
}
}
Will now produce:
<body>
<main>
<section>A</section>
</main>
</body>