ICssGroupingRule
Represents any at (grouping) CSS rule.
using AngleSharp.Attributes;
namespace AngleSharp.Dom.Css
{
[DomName("CSSGroupingRule")]
[DomNoInterfaceObject]
public interface ICssGroupingRule : ICssRule, ICssNode, IStyleFormattable, ICssRuleCreator
{
[DomName("cssRules")]
ICssRuleList Rules { get; }
[DomName("insertRule")]
int Insert(string rule, int index);
[DomName("deleteRule")]
void RemoveAt(int index);
}
}