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