CssBorderTopLeftRadiusProperty
sealed class CssBorderTopLeftRadiusProperty : CssBorderRadiusPartProperty, ICssBorderTopLeftRadiusProperty, ICssProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-left-radius
using AngleSharp.Css;
namespace AngleSharp.Dom.Css
{
internal sealed class CssBorderTopLeftRadiusProperty : CssBorderRadiusPartProperty, ICssBorderTopLeftRadiusProperty, ICssProperty
{
public Length HorizontalTopLeft => base.HorizontalRadius;
public Length VerticalTopLeft => base.VerticalRadius;
internal CssBorderTopLeftRadiusProperty(CssStyleDeclaration rule)
: base(PropertyNames.BorderTopLeftRadius, rule)
{
}
}
}