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)
{
}
}
}