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

com.peruncs.gwt.utils.DisplayProperty Maven / Gradle / Ivy

There is a newer version: 0.0.2
Show newest version
package com.peruncs.gwt.utils;

/**
 * HTML display properties.
 */
public interface DisplayProperty {
    String DEFAULT = "default";
    String NONE = "none";
    String INLINE = "inline";
    String BLOCK = "block";
    String INITIAL = "initial";
    String INHERIT = "inherit";
    String LIST_ITEM = "list-item";
    String INLINE_LIST_ITEM = "inline-list-item";
    String INLINE_BLOCK = "inline-block";
    String FLEX = "flex";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy