Module  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 - 要计算样式的元素。 此参数不能为空。
        pseudoElt - 伪元素或 null如果没有)。
        结果
        计算风格。 CSSStyleDeclaration是只读的,只包含绝对值。