This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
* Some parts of this feature may have varying levels of support.
The CSSImportRule interface represents an @import at-rule.
Inherits properties from its ancestor CSSRule.
CSSImportRule.href Read only
Returns the URL specified by the @import rule.
CSSImportRule.layerName Read only
Returns the name of the cascade layer declared in the @import rule, the empty string if the layer is anonymous, the or null if the rule doesn't declare any.
CSSImportRule.mediaReturns the value of the media attribute of the associated stylesheet.
CSSImportRule.styleSheet Read only
Returns the associated stylesheet.
CSSImportRule.supportsText Read only
Returns the supports condition specified by the @import rule.
Inherits methods from its ancestor CSSRule.
The document includes a single stylesheet which contains a single @import rule. Therefore the first item in the list of CSS rules will be a CSSImportRule.
@import "style.css" screen;
const myRules = document.styleSheets[0].cssRules; console.log(myRules[0]); // A CSSImportRule instance object
| Specification |
|---|
| CSS Object Model (CSSOM)> # the-cssimportrule-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
CSSImportRule |
1 | 12 | 1 | ≤12.1 | 1 | 18 | 4 | ≤12.1 | 1 | 1.0 | 4.4 | 1 |
href |
1 | 12 | 1 | ≤12.1 | 1 | 18 | 4 | ≤12.1 | 1 | 1.0 | 4.4 | 1 |
layerName |
99 | 99 | 97 | 85 | 15.4 | 99 | 97 | 68 | 15.4 | 18.0 | 99 | 15.4 |
media |
1 | 12 | 1 | ≤12.1 | 1 | 18 | 4 | ≤12.1 | 1 | 1.0 | 4.4 | 1 |
styleSheet |
1 | 12 | 1 | ≤12.1 | 1 | 18 | 4 | ≤12.1 | 1 | 1.0 | 4.4 | 1 |
supportsText |
121 | 121 | 114 | 107 | 17.5 | 121 | 114 | 81 | 17.5 | 25.0 | 121 | 17.5 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSSImportRule