AngleSharp by AngleSharp

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

.NET API 1,230,336 bytes

 CssWordSpacingProperty

Information: https://developer.mozilla.org/en-US/docs/Web/CSS/word-spacing Gets if normal inter-word space, as defined by the current font and/or the browser, is active. Gets the defined custom spacing, if any.
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssWordSpacingProperty : CssProperty { private static readonly IValueConverter StyleConverter = Converters.OptionalLengthConverter.OrDefault(); internal override IValueConverter Converter => StyleConverter; internal CssWordSpacingProperty() : base(PropertyNames.WordSpacing, PropertyFlags.Inherited | PropertyFlags.Unitless | PropertyFlags.Animatable) { } } }