Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. CSSNamespaceRule

CSSNamespaceRule

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨April 2017⁩.

TheCSSNamespaceRule interface describes an object representing a single CSS@namespaceat-rule.

CSSRule CSSNamespaceRule

Instance properties

Inherits properties from its ancestorCSSRule.

CSSNamespaceRule.namespaceURI

Returns a string containing the text of the URI of the given namespace.

CSSNamespaceRule.prefix

Returns a string with the name of the prefix associated to this namespace. If there is no such prefix, returns an empty string.

Instance methods

Inherits methods from its ancestorCSSRule.

Examples

The stylesheet includes a namespace as the only rule. Therefore the firstCSSRule returned will be aCSSNamespaceRule.

css
@namespace url("http://www.w3.org/1999/xhtml");
js
const myRules = document.styleSheets[0].cssRules;console.log(myRules[0]); // A CSSNamespaceRule

Specifications

Specification
CSS Object Model (CSSOM)
# the-cssnamespacerule-interface

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp