ICssNode
Represents a node in the CSSOM.
using System.Collections.Generic;
namespace AngleSharp.Dom.Css
{
public interface ICssNode : IStyleFormattable
{
IEnumerable<ICssNode> Children { get; }
TextView SourceCode { get; }
}
}