CssMinWidthProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/min-width
Gets the minimum height of the element.
using AngleSharp.Css;
using AngleSharp.Css.Values;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssMinWidthProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.LengthOrPercentConverter.OrDefault(Length.Zero);
internal override IValueConverter Converter => StyleConverter;
internal CssMinWidthProperty()
: base(PropertyNames.MinWidth, PropertyFlags.Animatable)
{
}
}
}