AngleSharp by Florian Rappl

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

.NET API 1,229,312 bytes

 CssListStylePositionProperty

More information available at https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-position Gets the selected position.
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssListStylePositionProperty : CssProperty { internal CssListStylePositionProperty(CssStyleDeclaration rule) : base(PropertyNames.ListStylePosition, rule, PropertyFlags.Inherited) { } protected override object GetDefault(IElement element) { return ListPosition.Outside; } protected override object Compute(IElement element) { return Converters.ListPositionConverter.Convert(base.Value); } protected override bool IsValid(CssValue value) { return Converters.ListPositionConverter.Validate(value); } } }