Skip to content

Version 0.7.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@Gigabyte5671 Gigabyte5671 released this 09 Sep 20:03
· 29 commits to main since this 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>