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