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