w3c.css.properties.css2.font.FontConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cssvalidator Show documentation
Show all versions of cssvalidator Show documentation
Backend for the W3C CSS Validation Service
//
// $Id$
// From Philippe Le Hegaret ([email protected])
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css2.font;
/**
* @version $Revision$
*/
public interface FontConstant {
/**
* Array of font-style values
*/
static String[] FONTSTYLE = {"normal", "italic", "oblique"};
/**
* Array of font-variant values
*/
static String[] FONTVARIANT = {"normal", "small-caps"};
/**
* Array of font-weight values
*/
static String[] FONTWEIGHT = {"normal", "bold"};
/**
* Array of font-stretch values
*/
static String[] FONTSTRETCH = {"normal", "wider", "narrower",
"ultra-condensed", "extra-condensed",
"condensed", "semi-condensed",
"semi-expanded", "expanded", "extra-expanded",
"ultra-expanded", "inherit"};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy