CssMarginLeftProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/margin-left
Gets the margin relative to the width of the containing block or a
fixed width, if any.
Gets if the margin is automatically determined.
using AngleSharp.Css;
using AngleSharp.Css.Values;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssMarginLeftProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.AutoLengthOrPercentConverter.OrDefault(Length.Zero);
internal override IValueConverter Converter => StyleConverter;
internal CssMarginLeftProperty()
: base(PropertyNames.MarginLeft, PropertyFlags.Unitless | PropertyFlags.Animatable)
{
}
}
}