此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。
HTMLStyleElement
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
* Some parts of this feature may have varying levels of support.
HTMLStyleElement 接口表示<style> 元素。它从HTMLElement 和LinkStyle 中继承属性和方法。
这个接口不允许修改包含其中的 CSS(大多数情况下)。如果需要修改 CSS,前往关于使用动态样式的信息查看在 DOM 中用于修改特定 CSS 属性的对象。
must be a stringIn this article
属性
Inherits properties from its parent,HTMLElement, and implementsLinkStyle.
HTMLStyleElement.mediaIs a
DOMStringrepresenting the intended destination medium for style information.HTMLStyleElement.typeIs a
DOMStringrepresenting the type of style being applied by this statement.HTMLStyleElement.disabledIs a
Booleanvalue representing whether or not the stylesheet is disabled (true) or not (false).LinkStyle.sheet只读Returns the
StyleSheetobject associated with the given element, ornullif there is noneHTMLStyleElement.scoped非标准已弃用Is a
Booleanvalue indicating if the element applies to the whole document (false) or only to the parent's sub-tree (true).
方法
No specific method; inherits properties from its parent,HTMLElement, andLinkStyle.
规范
| Specification |
|---|
| HTML> # htmlstyleelement> |
浏览器兼容性
参见
- The HTML element implementing this interface:
<style>. - Using dynamic styling information to see how to manipulate CSS.