CssTransformStyleProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/transform-style
Gets if the children of the element are lying in the plane of the
element itself. Otherwise the children of the element should be
positioned in the 3D-space.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssTransformStyleProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.Toggle(Keywords.Flat, Keywords.Preserve3d).OrDefault(true);
internal override IValueConverter Converter => StyleConverter;
internal CssTransformStyleProperty()
: base(PropertyNames.TransformStyle, PropertyFlags.None)
{
}
}
}