PropertyFlags
enum PropertyFlags
Defines some properties of a CSS property.
Exclusive maximum is 0x100.
Inclusive maximum is 0x0FF.
using System;
namespace AngleSharp.Css
{
[Flags]
internal enum PropertyFlags : byte
{
None = 0,
Inherited = 1,
Hashless = 2,
Unitless = 4,
Animatable = 8,
Shorthand = 16
}
}