Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #1092

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proposals/css-modules-v1-explainer.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The introduction of ES6 JavaScript Modules has provided several benefits for web

CSS modules solves these issues by extending the ES modules infrastructure to allow importing a CSSStyleSheet object from a CSS file, which can then be added to the document or a shadowRoot via the [adoptedStyleSheets](https://wicg.github.io/construct-stylesheets/#using-constructed-stylesheets) array.

There is demand for this functionality in the developer community -- see [this thread](https://github.com/w3c/webcomponents/issues/759) where there a number of developers have expressed interest. The popularity of CSS loaders in JS bundlers is also indicative of demand for this functionality.
There is demand for this functionality in the developer community -- see [this thread](https://github.com/w3c/webcomponents/issues/759) where a number of developers have expressed interest. The popularity of CSS loaders in JS bundlers is also indicative of demand for this functionality.

## Importing a CSS Module
CSS modules will be imported using the same `import` statements currently used for other ES modules,
Expand Down