ISelector
Represents a CSS selector for matching elements.
More information: http://dev.w3.org/csswg/selectors4/
using AngleSharp.Css;
namespace AngleSharp.Dom.Css
{
public interface ISelector : ICssNode, IStyleFormattable
{
Priority Specifity { get; }
string Text { get; }
bool Match(IElement element);
}
}