AngleSharp by Florian Rappl

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

.NET API 1,229,312 bytes

 CssValue

Represents a CSS value.
public static CssValue Initial

public int Count { get; }

Gets the number of tokens for the current value.

public string CssText { get; }

Gets or sets a string representation of the current value.

public CssToken this[int index] { get; }

Gets the token at the provided index.

public CssValueType Type { get; }

Gets a code defining the type of the value as defined above.

public CssValue(IEnumerable<CssToken> tokens)

Creates a new CSS value.

public static CssValue FromString(string text, CssValueType type)

Creates a new CSS value with the given text and type.