Google และ MS ร่วมมือกันพัฒนา CSS Module Scripts
(blogs.windows.com)<p>- รองรับ CSS Module Scripts ตั้งแต่ Edge และ Chrome เวอร์ชัน 93 <br />
- สามารถโหลด CSS stylesheet ได้ด้วยคำสั่ง `import` เหมือนกับ JS <br />
→ import sheet from './styles.css' assert { type: 'css' };<br />
- นำเข้าเป็น "Constructable Stylesheets" ที่นำกลับมาใช้ซ้ำได้ง่าย และสามารถนำไปใช้กับ Document หรือ Shadow Roots ได้ <br />
→ document.adoptedStyleSheets = [sheet];<br />
→ shadowRoot.adoptedStyleSheets = [sheet];<br />
- สะดวกและเร็วกว่าเอลิเมนต์ `<style>` และ `<link>` </p>
ยังไม่มีความคิดเห็น