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