CSS import
@import './layout/index.css';
/*
Browser Support
---------------
• Chrome, Edge(v.93) ✅
• Firefox, Safari ❌
*/
// ⭐️ import a CSS module script
import styles from './styles.css' assert { type: 'css' };
// apply it to a document
document.adoptedStyleSheets = [...document.adoptedStyleSheets, styles];
// or a shadow root
shadowRoot.adoptedStyleSheets = [...shadowRoot.adoptedStyleSheets, styles];
<link rel="stylesheet" href="styles.css">
Last updated