AngleSharp by AngleSharp

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

.NET API 1,230,336 bytes

 TextAlignLast

public enum TextAlignLast
An enumeration with all possible text last alignments.
Auto = 0

The affected line is aligned per the value of text-align, unless text-align is justify, in which case the effect is the same as etting text-align-last to left.

Center = 5

The inline contents are centered within the line box.

End = 2

The same as right if direction is left-to-right and left if direction is right-to-left.

Justify = 6

The text is justified. Text should line up their left and right edges to the left and right content edges of the paragraph.

Left = 3

The inline contents are aligned to the left edge of the line box.

Right = 4

The inline contents are aligned to the right edge of the line box.

Start = 1

The same as left if direction is left-to-right and right if direction is right-to-left.