w3c.css.properties.css1.CssTextPropertiesConstants 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.css1;
/**
* @version $Revision$
*/
public interface CssTextPropertiesConstants {
public static String[] TEXTDECORATION = {
"underline", "overline", "line-through", "blink", "inherit"};
public static String[] TEXTDECORATIONTV = {
"none", "underline", "overline", "line-through", "inherit"};
public static String[] TEXTDECORATIONMOB = {
"underline", "inherit"};
public static String[] TEXTTRANSFORM = {
"none", "capitalize", "uppercase", "lowercase", "inherit"};
public static String[] TEXTALIGN = {
"left", "right", "center", "justify", "inherit", "start", "end"};
public static String[] TEXTALIGNTV = {
"left", "right", "center", "justify", "inherit"};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy