AngleSharp by AngleSharp

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

.NET API 1,204,224 bytes

 CssBorderBottomWidthProperty

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