Using CSS Module Scripts to import stylesheets
With the new CSS module scripts feature, you can load CSS style sheets with import statements, just like JavaScript modules. The style sheets can then be applied to documents or shadow roots in the same manner as constructive stylesheets. This can be more convenient and more performant than other ways of importing and applying CSS.
Browser Support
CSS module scripts are available by default in Chrome and Edge in version 93.
Support in Firefox and Safari is not yet available. Implementation progress can be tracked at the Gecko bug and WebKit bug, respectively.
Prerequisites
- Familiarity with JavaScript modules.
- Familiarity with constructible stylesheets.
Using CSS module scripts
Import a CSS module script and apply it to a document or a shadow root like this:
The default export of a CSS module script is a constructable stylesheet whose contents are those of the imported file. Like any other constructable stylesheet, it is applied to documents or shadow roots using adoptedStyleSheets.
Unlike other ways of applying CSS from JavaScript, there is no need to create <style> elements or mess with JavaScript strings of CSS text.
CSS modules also have some of the same benefits as JavaScript modules.
- Deduplication: if the same CSS file is imported from multiple places in an application, it will still only be fetched, instantiated, and parsed a single time.
- Consistent order of evaluation: when the importing JavaScript is running, it can rely on the stylesheet it imports having already been fetched and parsed.
- Security: modules are fetched with CORS and use strict MIME-type checking.
Import Assertions (what’s with the ‘assert’?)
The assert { type: ‘css’ } part of the import statement is an import assertion. This is required; without it, the import is treated as a normal JavaScript module import, and will fail if the imported file has a non-JavaScript MIME type.
Dynamically imported stylesheets
You can also import a CSS module using dynamic import, with a new second parameter for the type: ‘css’ import assertion:
@import rules not yet allowed
Currently CSS @import rules don’t work in constructable stylesheets, including CSS module scripts. If @import rules are present in a constructable stylesheet, those rules will be ignored.