AngleSharp by AngleSharp

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

.NET API 1,214,976 bytes

 CssBorderRadiusProperty

Information can be found on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssBorderRadiusProperty : CssShorthandProperty { private static readonly IValueConverter StyleConverter = Converters.BorderRadiusShorthandConverter.OrDefault(); internal override IValueConverter Converter => StyleConverter; internal CssBorderRadiusProperty() : base(PropertyNames.BorderRadius, PropertyFlags.Animatable) { } } }