Interface ICSSStyleRule

Interface ICSSStyleRule

Namespace: Aspose.Html.Dom.Css
Assembly: Aspose.HTML.dll (25.2.0)

The CSSStyleRule interface represents a single rule set in a CSS style sheet.

[ComVisible(true)]
[DOMName("CSSStyleRule")]
[DOMObject]
public interface ICSSStyleRule : ICSSRule

Implements

ICSSRule

Properties

SelectorText

The textual representation of the selector for the rule set. The implementation may have stripped out insignificant whitespace while parsing the selector.

[DOMName("selectorText")]
string SelectorText { get; }

Property Value

string

Style

The declaration-block of this rule set.

[DOMName("style")]
ICSSStyleDeclaration Style { get; }

Property Value

ICSSStyleDeclaration