AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.7" />

.NET API 1,204,224 bytes

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