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

com.projetloki.genesis.ListStylePositionValue Maven / Gradle / Ivy

The newest version!
package com.projetloki.genesis;

/**
 * Enum for the list-style-position property.
 * Specifies the position of the marker box in the principal block box.
 *
 * @see MDN
 *
 * @author Clément Roux
 */
public enum ListStylePositionValue {
  /**
   * The marker box is the first inline box in the principal block box,
   * after which the element's content flows.
   */
  INSIDE("inside"),
  /** The marker box is outside the principal block box. This is default. */
  OUTSIDE("outside"),
  INHERIT("inherit");
  final String css;

  private ListStylePositionValue(String css) {
    this.css = css;
  }

  @Override public String toString() {
    return css;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy