Trait

com.raquo.domtypes.generic.defs.styles.keywords

DisplayStyle

Related Doc: package keywords

Permalink

trait DisplayStyle[T] extends NoneStyle[T]

See also

https://developer.mozilla.org/en-US/docs/Web/CSS/display

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DisplayStyle
  2. NoneStyle
  3. StyleStringValueBuilder
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def buildStringValue(value: String): T

    Permalink
    Attributes
    protected
    Definition Classes
    StyleStringValueBuilder
  2. abstract def valueAsString(value: T): String

    Permalink
    Attributes
    protected
    Definition Classes
    StyleStringValueBuilder

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. lazy val block: T

    Permalink

    The element generates a block element box --MDN

  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @throws( ... )
  7. lazy val contents: T

    Permalink

    These elements don't produce a specific box by themselves.

    These elements don't produce a specific box by themselves. They are replaced by their pseudo-box and their child boxes. --MDN

  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. lazy val flex: T

    Permalink

    The element behaves like a block element and lays out its content according to the flexbox model --MDN

  11. lazy val flow: T

    Permalink

    The element lays out its contents using flow layout (block-and-inline layout).

    The element lays out its contents using flow layout (block-and-inline layout).

    If its outer display type is inline or run-in, and it is participating in a block or inline formatting context, then it generates an inline box. Otherwise it generates a block container box.

    Depending on the value of other properties (such as position, float, or overflow) and whether it is itself participating in a block or inline formatting context, it either establishes a new block formatting context (BFC) for its contents or integrates its contents into its parent formatting context. --MDN

  12. lazy val flowRoot: T

    Permalink

    The element generates a block element box that establishes a new block formatting context, defining where the formatting root lies --MDN

  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  14. lazy val grid: T

    Permalink

    The element behaves like a block element and lays out its content according to the grid model --MDN

  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  16. lazy val inherit: T

    Permalink

    The inherit CSS keyword causes the element for which it is specified to take the computed value of the property from its parent element.

    The inherit CSS keyword causes the element for which it is specified to take the computed value of the property from its parent element. --MDN

    Definition Classes
    StyleStringValueBuilder
    See also

    https://developer.mozilla.org/en-US/docs/Web/CSS/inherit

  17. lazy val initial: T

    Permalink

    The initial CSS keyword applies the initial (or default) value of a property to an element.

    The initial CSS keyword applies the initial (or default) value of a property to an element. --MDN

    Definition Classes
    StyleStringValueBuilder
    See also

    https://developer.mozilla.org/en-US/docs/Web/CSS/initial_value

    https://developer.mozilla.org/en-US/docs/Web/CSS/initial

  18. lazy val inline: T

    Permalink

    The element generates one or more inline element boxes --MDN

  19. lazy val inlineBlock: T

    Permalink

    The element generates a block element box that will be flowed with surrounding content as if it were a single inline box.

    The element generates a block element box that will be flowed with surrounding content as if it were a single inline box. --MDN

  20. lazy val inlineFlex: T

    Permalink

    The element behaves like an inline element and lays out its content according to the flexbox model --MDN

  21. lazy val inlineGrid: T

    Permalink

    The element behaves like an inline element and lays out its content according to the grid model --MDN

  22. lazy val inlineTable: T

    Permalink

    The inline-table value does not have a direct mapping in HTML.

    The inline-table value does not have a direct mapping in HTML. It behaves like a table HTML element, but as an inline box, rather than a block-level box. Inside the table box is a block-level context --MDN

  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. lazy val listItem: T

    Permalink

    The element generates a block box for the content and a separate list-item inline box --MDN

  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. lazy val none: T

    Permalink

    Turns off the display of an element (it has no effect on layout); all descendant elements also have their display turned off.

    Turns off the display of an element (it has no effect on layout); all descendant elements also have their display turned off. The document is rendered as though the element did not exist. --MDN

    To render an element box's dimensions, yet have its contents be invisible, see the visibility property.

    Definition Classes
    DisplayStyleNoneStyle
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  29. lazy val revert: T

    Permalink

    The revert CSS keyword reverts the cascaded value of the property from its current value to the value the property would have had if no changes had been made by the current style origin to the current element.

    The revert CSS keyword reverts the cascaded value of the property from its current value to the value the property would have had if no changes had been made by the current style origin to the current element. --MDN

    Definition Classes
    StyleStringValueBuilder
    See also

    https://developer.mozilla.org/en-US/docs/Glossary/Style_origin

    https://developer.mozilla.org/en-US/docs/Web/CSS/revert

  30. lazy val ruby: T

    Permalink

    The element behaves like an inline element and lays out its content according to the ruby formatting model.

    The element behaves like an inline element and lays out its content according to the ruby formatting model. It behaves like the corresponding HTML <ruby> elements. --MDN

  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. lazy val table: T

    Permalink

    Behaves like the table HTML element.

    Behaves like the table HTML element. It defines a block-level box --MDN

  33. lazy val tableCaption: T

    Permalink

    Behaves like the caption HTML element --MDN

  34. lazy val tableCell: T

    Permalink

    Behaves like the td HTML element --MDN

  35. lazy val tableColumn: T

    Permalink

    These elements behave like the corresponding col HTML elements --MDN

  36. lazy val tableColumnGroup: T

    Permalink

    These elements behave like the corresponding colgroup HTML elements --MDN

  37. lazy val tableFooterGroup: T

    Permalink

    These elements behave like the corresponding tfoot HTML elements --MDN

  38. lazy val tableHeaderGroup: T

    Permalink

    These elements behave like the corresponding thead HTML elements --MDN

  39. lazy val tableRow: T

    Permalink

    Behaves like the tr HTML element --MDN

  40. lazy val tableRowGroup: T

    Permalink

    These elements behave like the corresponding tbody HTML elements --MDN

  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. def tupled(outside: String, inside: String): T

    Permalink

    Two-value syntax, e.g.

    Two-value syntax, e.g. "inline flex"

  43. def tupled(outside: T, inside: T): T

    Permalink

    Two-value syntax, e.g.

    Two-value syntax, e.g. "inline flex"

  44. lazy val unset: T

    Permalink

    The unset CSS keyword resets a property to its inherited value if the property naturally inherits from its parent, and to its initial value if not.

    The unset CSS keyword resets a property to its inherited value if the property naturally inherits from its parent, and to its initial value if not. In other words, it behaves like the inherit keyword in the first case, when the property is an inherited property, and like the initial keyword in the second case, when the property is a non-inherited property. --MDN

    Definition Classes
    StyleStringValueBuilder
    See also

    https://developer.mozilla.org/en-US/docs/Web/CSS/unset

  45. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from NoneStyle[T]

Inherited from StyleStringValueBuilder[T]

Inherited from AnyRef

Inherited from Any

Ungrouped