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