This article teaches you how to import CSS like JS modules

This article teaches you how to import CSS like JS modules

Preface

The 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:

  • Construct a style sheet via new CSSStyleSheet()
  • Changing the configurable style sheet
  • Using constructible style sheets via adoptedStyleSheets

The API for changing the constructible style sheet is as follows:

  • insertRule(rule, index) inserts rule into the cssRules attribute
  • deleteRule(rule, index) Delete rule from cssRules property
  • replace(text) asynchronously replaces cssRules
  • replaceSync(text) Synchronous replacement
// 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 Script

Introducing 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:

  • Deduplication: If you import the same CSS file from multiple locations in your app, it will still only be fetched, instantiated, and parsed once.
  • Consistent ordering: If you import a JavaScript runtime, it can depend on the stylesheets already being parsed.
  • Security: Modules are loaded using CORS and use strict MIME type checking.

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 sheets

Similar 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 supported

Currently, 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~

Summarize

This 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:
  • Detailed explanation of JS module import and export
  • Tutorial on exporting and importing in javascript to achieve modular management

<<:  How to automatically backup mysql remotely under Linux

>>:  How to solve the problem that Docker container has no vim command

Recommend

CSS3 realizes the effect of triangle continuous enlargement

1. CSS3 triangle continues to zoom in special eff...

How to backup MySQL regularly and upload it to Qiniu

In most application scenarios, we need to back up...

How to start tomcat using jsvc (run as a normal user)

Introduction to jsvc In production, Tomcat should...

Common array operations in JavaScript

Table of contents 1. concat() 2. join() 3. push()...

MySQL database Shell import_table data import

Table of contents MySQL Shell import_table data i...

4 ways to optimize MySQL queries for millions of data

Table of contents 1. The reason why the limit is ...

Example code for implementing the wavy water ball effect using CSS

Today I learned a new CSS special effect, the wav...

mysql 5.7.20 win64 installation and configuration method

mysql-5.7.20-winx64.zipInstallation package witho...

Implementation of iview permission management

Table of contents iview-admin2.0 built-in permiss...

Detailed graphic explanation of MySql5.7.18 character set configuration

Background: A long time ago (2017.6.5, the articl...

Native JS to achieve digital table special effects

This article shares a digital clock effect implem...

React native ScrollView pull down refresh effect

This article shares the specific code of the pull...