PrefaceThe just released Chrome 93 version has an exciting new feature: CSS Module Script, which allows you to load CSS styles like importing a JavaScript module. You can then apply CSS styles to the document and shadow dom in the same way as a Constructable Stylesheet, which is more convenient and efficient than other ways of loading CSS. What are constructible style sheets?Before understanding CSS Module Script, let's first understand what a constructible stylesheet is. As it implies, it is designed to be directly constructible by CssStyleSheet and can be used in both document and shadow DOM. Using a constructible stylesheet:
The API for changing the constructible style sheet is as follows:
// Construct the CSSStyleSheet const stylesheet = new CSSStyleSheet(); // Add some CSS stylesheet.replaceSync('body { background: #000 !important; }') // OR stylesheet.replace, which returns a Promise instead // Tell the document to adopt your new stylesheet. // Note that this also works with Shadow Roots. document.adoptedStyleSheets = [...document.adoptedStyleSheets, stylesheet]; Using CSS Module ScriptIntroducing CSS Module Script will act on document and shadow dom, as follows: import sheet from './styles.css' assert { type: 'css' }; document.adoptedStyleSheets = [sheet]; shadowRoot.adoptedStyleSheets = [sheet]; The default export of CSS Module Script is a constructible style sheet, and like any other constructible style sheet, it uses adoptedstylesheet to act on document and shadow dom. Unlike other ways of including CSS using JavaScript, you don't need to create a <script> tag, nor do you need to insert the CSS into the obfuscated JavaScript. CSS Modules also have the same advantages as JavaScript Modules:
What are import assertions?The assert {type: 'css'} part of the import statement is an import assertion, which is required; without it, CSS will be considered a normal JavaScript module and will fail to import if the imported file has a non-JavaScript MIME type. import sheet from './styles.css'; // Failed to load module script: // Expected a JavaScript module // script but the server responded // with a MIME type of "text/css". Dynamic import of style sheetsSimilar to dynamic import of JavaScript modules, you can also import CSS modules using dynamic import: const cssModule = await import('./style.css', { assert: { type: 'css' } }); document.adoptedStyleSheets = [cssModule.default]; There is a pitfall here that needs to be noted. What is added to adoptedstylesheet is not the cssModule itself, but cssModule.default. @import rules are not yet supportedCurrently, the rules for CSS @import do not apply to constructible stylesheets, including CSS Module Scripts. If a CSS module contains @import rules, they will be ignored. /* atImported.css */ div { background-color: blue; } /* styles.css */ @import url('./atImported.css'); /* Ignored in CSS module */ div { border: 1em solid green; } <!-- index.html --> <script type="module"> import styles from './styles.css' assert { type: "css" }; document.adoptedStyleSheets = [styles]; </script> <div>This div will have a green border but no background color.</div> Currently, Firefox and Safari browsers are not supported, but it can be expected in the future~ SummarizeThis is the end of this article on how to import CSS like importing JS modules. For more related content like importing JS modules and importing CSS, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to automatically backup mysql remotely under Linux
>>: How to solve the problem that Docker container has no vim command
1. CSS3 triangle continues to zoom in special eff...
Say it in advance Nodejs reads the database as an...
In most application scenarios, we need to back up...
Introduction to jsvc In production, Tomcat should...
Table of contents 1. concat() 2. join() 3. push()...
Table of contents MySQL Shell import_table data i...
Table of contents 1. The reason why the limit is ...
Preface In web applications, in order to save tra...
Today I learned a new CSS special effect, the wav...
mysql-5.7.20-winx64.zipInstallation package witho...
Table of contents iview-admin2.0 built-in permiss...
Background: A long time ago (2017.6.5, the articl...
This article shares a digital clock effect implem...
This article shares the specific code of the pull...
Solution-1: Download the msvcr100.dll file (find ...