CssOutlineWidthProperty
More information available:
https://developer.mozilla.org/en-US/docs/Web/CSS/outline-width
Gets the width of the outline of an element. An outline is a line
that is drawn around elements, outside the border edge, to make the
element stand out.
using AngleSharp.Css;
using AngleSharp.Css.Values;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssOutlineWidthProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.LineWidthConverter.OrDefault(Length.Medium);
internal override IValueConverter Converter => StyleConverter;
internal CssOutlineWidthProperty()
: base(PropertyNames.OutlineWidth, PropertyFlags.Animatable)
{
}
}
}