33 lines
713 B
C#
33 lines
713 B
C#
|
|
// "Therefore those skilled at the unorthodox
|
||
|
|
// are infinite as heaven and earth,
|
||
|
|
// inexhaustible as the great rivers.
|
||
|
|
// When they come to an end,
|
||
|
|
// they begin again,
|
||
|
|
// like the days and months;
|
||
|
|
// they die and are reborn,
|
||
|
|
// like the four seasons."
|
||
|
|
//
|
||
|
|
// - Sun Tsu,
|
||
|
|
// "The Art of War"
|
||
|
|
|
||
|
|
namespace TheArtOfDev.HtmlRenderer.Core.Dom
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Represents the possible units of the CSS lengths
|
||
|
|
/// </summary>
|
||
|
|
/// <remarks>
|
||
|
|
/// http://www.w3.org/TR/CSS21/syndata.html#length-units
|
||
|
|
/// </remarks>
|
||
|
|
internal enum CssUnit
|
||
|
|
{
|
||
|
|
None,
|
||
|
|
Ems,
|
||
|
|
Pixels,
|
||
|
|
Ex,
|
||
|
|
Inches,
|
||
|
|
Centimeters,
|
||
|
|
Milimeters,
|
||
|
|
Points,
|
||
|
|
Picas
|
||
|
|
}
|
||
|
|
}
|