ICssProperty
Common interface of all CSS properties.
using AngleSharp.Attributes;
namespace AngleSharp.Dom.Css
{
[DomName("CSSProperty")]
[DomNoInterfaceObject]
public interface ICssProperty : ICssNode, IStyleFormattable
{
[DomName("name")]
string Name { get; }
[DomName("value")]
string Value { get; }
[DomName("important")]
bool IsImportant { get; }
}
}