Class CSSSupports
CSS Supports at-rule descriptor.
public sealed record CSSSupports : IEquatable<CSSSupports>
- Inheritance
-
CSSSupports
- Implements
- Inherited Members
Constructors
CSSSupports(string, bool)
CSS Supports at-rule descriptor.
public CSSSupports(string Text, bool Active)
Parameters
Properties
Active
Whether the supports condition is satisfied.
public bool Active { get; init; }
Property Value
Range
The associated rule header range in the enclosing stylesheet (if available).
public SourceRange? Range { get; init; }
Property Value
StyleSheetId
Identifier of the stylesheet containing this object (if exists).
public StyleSheetId? StyleSheetId { get; init; }
Property Value
Text
Supports rule text.
public string Text { get; init; }