AngleSharp by AngleSharp

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

.NET API 1,224,704 bytes

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