AngleSharp by AngleSharp

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

.NET API 1,230,336 bytes

 CssBorderRightWidthProperty

More information available at: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-width
using AngleSharp.Css; using AngleSharp.Css.Values; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssBorderRightWidthProperty : CssProperty { private static readonly IValueConverter StyleConverter = Converters.LineWidthConverter.OrDefault(Length.Medium); internal override IValueConverter Converter => StyleConverter; internal CssBorderRightWidthProperty() : base(PropertyNames.BorderRightWidth, PropertyFlags.Unitless | PropertyFlags.Animatable) { } } }