CssWidthProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/width
using AngleSharp.Css;
namespace AngleSharp.Dom.Css
{
internal sealed class CssWidthProperty : CssCoordinateProperty, ICssWidthProperty, ICssProperty
{
public Length? Width => base.Position;
internal CssWidthProperty(CssStyleDeclaration rule)
: base(PropertyNames.Width, rule)
{
}
}
}