CssBoxDecorationBreak
More infos can be found on the W3C homepage or
in condensed form at
http://css-infos.net/property/box-decoration-break
Gets if each box is independently wrapped with the border
and padding. Otherwise no border and no padding are inserted
at the break.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssBoxDecorationBreak : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.BoxDecorationConverter.OrDefault(false);
internal override IValueConverter Converter => StyleConverter;
internal CssBoxDecorationBreak()
: base(PropertyNames.BoxDecorationBreak, PropertyFlags.None)
{
}
}
}