All Downloads are FREE. Search and download functionalities are using the official Maven repository.

w3c.css.properties.css2.font.FontConstant Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
//
// $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