AngleSharp by Florian Rappl

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

.NET API 1,171,968 bytes

 CssHeightProperty

Information can be found on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/height
using AngleSharp.Css; namespace AngleSharp.Dom.Css { internal sealed class CssHeightProperty : CssCoordinateProperty, ICssHeightProperty, ICssProperty { public Length? Height => base.Position; internal CssHeightProperty(CssStyleDeclaration rule) : base(PropertyNames.Height, rule) { } } }