AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.9" />

.NET API 1,224,192 bytes

 CssMarginRightProperty

Information can be found on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-right 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 CssMarginRightProperty : CssProperty { private static readonly IValueConverter StyleConverter = Converters.AutoLengthOrPercentConverter.OrDefault(Length.Zero); internal override IValueConverter Converter => StyleConverter; internal CssMarginRightProperty() : base(PropertyNames.MarginRight, PropertyFlags.Unitless | PropertyFlags.Animatable) { } } }