AngleSharp by AngleSharp

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

.NET API 1,230,336 bytes

 CssBorderBottomLeftRadiusProperty

Information can be found on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-left-radius
using AngleSharp.Css; using AngleSharp.Css.Values; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssBorderBottomLeftRadiusProperty : CssProperty { private static readonly IValueConverter StyleConverter = Converters.BorderRadiusConverter.OrDefault(Length.Zero); internal override IValueConverter Converter => StyleConverter; internal CssBorderBottomLeftRadiusProperty() : base(PropertyNames.BorderBottomLeftRadius, PropertyFlags.Animatable) { } } }