AngleSharp by AngleSharp

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

.NET API 1,223,680 bytes

 CssBorderWidthProperty

More information available at: https://developer.mozilla.org/en-US/docs/Web/CSS/border-width
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssBorderWidthProperty : CssShorthandProperty { private static readonly IValueConverter StyleConverter = Converters.LineWidthConverter.Periodic(PropertyNames.BorderTopWidth, PropertyNames.BorderRightWidth, PropertyNames.BorderBottomWidth, PropertyNames.BorderLeftWidth).OrDefault(); internal override IValueConverter Converter => StyleConverter; internal CssBorderWidthProperty() : base(PropertyNames.BorderWidth, PropertyFlags.Animatable) { } } }