AngleSharp by AngleSharp

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

.NET API 1,230,848 bytes

 CssPaddingBottomProperty

Information can be found on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-bottom Gets the padding relative to the height of the containing block or a fixed height.
using AngleSharp.Css; using AngleSharp.Css.Values; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssPaddingBottomProperty : CssProperty { private static readonly IValueConverter StyleConverter = Converters.LengthOrPercentConverter.OrDefault(Length.Zero); internal override IValueConverter Converter => StyleConverter; internal CssPaddingBottomProperty() : base(PropertyNames.PaddingBottom, PropertyFlags.Unitless | PropertyFlags.Animatable) { } } }