CssOrphansProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/orphans
Gets the minimum number of lines in a block container
that must be left at the bottom of the page.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssOrphansProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.NaturalIntegerConverter.OrDefault(2);
internal override IValueConverter Converter => StyleConverter;
internal CssOrphansProperty()
: base(PropertyNames.Orphans, PropertyFlags.Inherited)
{
}
}
}