CssOverflowWrapProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap
Used to specify whether or not the browser may break lines within words
in order to prevent overflow when an otherwise unbreakable string
is too long to fit in its containing box.
using AngleSharp.Css;
namespace AngleSharp.Dom.Css
{
internal sealed class CssOverflowWrapProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.OverflowWrapConverter;
internal override IValueConverter Converter => StyleConverter;
public CssOverflowWrapProperty()
: base(PropertyNames.OverflowWrap, PropertyFlags.None)
{
}
}
}