模块  jdk.xml.dom
软件包  org.w3c.dom.css

Interface ViewCSS

  • All Superinterfaces:
    AbstractView

    public interface ViewCSS
    extends AbstractView
    此接口表示CSS视图。 getComputedStyle方法提供对元素的计算值的只读访问。

    期望通过在ViewCSS接口的实例上使用特定于绑定的转换方法AbstractView接口的实例。

    由于计算样式与Element节点相关,因此如果从文档中删除此元素,则与此声明相关的关联CSSStyleDeclarationCSSValue将不再有效。

    另见Document Object Model (DOM) Level 2 Style Specification

    从以下版本开始:
    1.4,DOM Level 2
    • 方法详细信息

      • getComputedStyle

        CSSStyleDeclaration getComputedStyle​(Element elt,
                                             String pseudoElt)
        此方法用于获取[ CSS2 ]中定义的计算样式。
        参数
        elt - 要计算其样式的元素。 此参数不能为null。
        pseudoElt - 伪元素或 null如果没有)。
        结果
        计算出的风格。 CSSStyleDeclaration是只读的,仅包含绝对值。