AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.10" />

.NET API 1,230,336 bytes

 ICssConditionRule

Represents all the "conditional" at-rules, which consist of a condition and a statement block.
using AngleSharp.Attributes; namespace AngleSharp.Dom.Css { [DomName("CSSConditionRule")] [DomNoInterfaceObject] public interface ICssConditionRule : ICssGroupingRule, ICssRule, ICssNode, IStyleFormattable, ICssRuleCreator { [DomName("conditionText")] string ConditionText { get; set; } } }