CssDirectionProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/direction
Gets the selected text direction.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssDirectionProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.DirectionModeConverter.OrDefault(DirectionMode.Ltr);
internal override IValueConverter Converter => StyleConverter;
internal CssDirectionProperty()
: base(PropertyNames.Direction, PropertyFlags.Inherited)
{
}
}
}