IElementCssInlineStyle
Used to mark elements that may have inline style,
usually set and defined over an attribute.
using AngleSharp.Attributes;
namespace AngleSharp.Dom.Css
{
[DomName("ElementCSSInlineStyle")]
[DomNoInterfaceObject]
public interface IElementCssInlineStyle
{
[DomName("style")]
[DomPutForwards("cssText")]
ICssStyleDeclaration Style { get; }
}
}