Trait

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

VerticalAlignStyle

Related Doc: package keywords

Permalink

trait VerticalAlignStyle[T, DerivedProp[_], Num] extends LengthUnits[DerivedProp, Num] with StyleStringValueBuilder[T]

See also

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

Linear Supertypes
StyleStringValueBuilder[T], LengthUnits[DerivedProp, Num], CalcUnits[DerivedProp], DerivedStylePropBuilder[DerivedProp], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VerticalAlignStyle
  2. StyleStringValueBuilder
  3. LengthUnits
  4. CalcUnits
  5. DerivedStylePropBuilder
  6. AnyRef
  7. 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 derivedStyle[A](encode: (A) ⇒ String): DerivedProp[A]

    Permalink
    Attributes
    protected
    Definition Classes
    DerivedStylePropBuilder
  3. abstract def encodeCalcValue(exp: String): String

    Permalink

    Encode / sanitize value to put inside calc() function

    Encode / sanitize value to put inside calc() function

    Attributes
    protected
    Definition Classes
    DerivedStylePropBuilder
  4. abstract def encodeUrlValue(url: String): String

    Permalink

    Encode / sanitize value to put inside url() function

    Encode / sanitize value to put inside url() function

    Attributes
    protected
    Definition Classes
    DerivedStylePropBuilder
  5. 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 baseline: T

    Permalink

    Aligns the baseline of the element with the baseline of its parent.

    Aligns the baseline of the element with the baseline of its parent. The baseline of some replaced elements, like textarea is not specified by the HTML specification, meaning that their behavior with this keyword may change from one browser to the other. --MDN

  6. lazy val bottom: T

    Permalink

    Aligns the bottom of the element and its descendants with the bottom of the entire line.

    Aligns the bottom of the element and its descendants with the bottom of the entire line. --MDN

  7. lazy val calc: DerivedProp[String]

    Permalink

    Wrap the provided expression in CSS calc() function.

    Wrap the provided expression in CSS calc() function.

    Definition Classes
    CalcUnits
    See also

    https://developer.mozilla.org/en-US/docs/Web/CSS/calc()

  8. lazy val ch: DerivedProp[Num]

    Permalink

    ch represents the width, or more precisely the advance measure, of the glyph "0" (zero, the Unicode character U+0030) in the element's font.

    ch represents the width, or more precisely the advance measure, of the glyph "0" (zero, the Unicode character U+0030) in the element's font. --MDN

    Definition Classes
    LengthUnits
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @throws( ... )
  10. lazy val em: DerivedProp[Num]

    Permalink

    em represents the calculated font-size of the element.

    em represents the calculated font-size of the element. If used on the font-size property itself, it represents the inherited font-size of the element. --MDN

    Definition Classes
    LengthUnits
  11. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  15. 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

  16. 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

  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. lazy val middle: T

    Permalink

    Aligns the middle of the element with the middle of lowercase letters in the parent.

    Aligns the middle of the element with the middle of lowercase letters in the parent. --MDN

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

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  22. lazy val percent: DerivedProp[Num]

    Permalink
    Definition Classes
    LengthUnits
  23. lazy val pt: DerivedProp[Num]

    Permalink

    1 pt is 4/3 of a pixel.

    1 pt is 4/3 of a pixel.

    Definition Classes
    LengthUnits
  24. lazy val px: DerivedProp[Num]

    Permalink

    Pixels

    Pixels

    Definition Classes
    LengthUnits
  25. lazy val rem: DerivedProp[Num]

    Permalink

    rem represents the font-size of the root element (typically <html>).

    rem represents the font-size of the root element (typically <html>). When used within the root element font-size, it represents its initial value (a common browser default is 16px, but user-defined preferences may modify this). --MDN

    Definition Classes
    LengthUnits
  26. 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

  27. lazy val sub: T

    Permalink

    Aligns the baseline of the element with the subscript-baseline of its parent.

    Aligns the baseline of the element with the subscript-baseline of its parent. --MDN

  28. lazy val super: T

    Permalink

    Aligns the baseline of the element with the superscript-baseline of its parent.

    Aligns the baseline of the element with the superscript-baseline of its parent. --MDN

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

    Permalink
    Definition Classes
    AnyRef
  30. lazy val textBottom: T

    Permalink

    Aligns the bottom of the element with the bottom of the parent element's font.

    Aligns the bottom of the element with the bottom of the parent element's font. --MDN

  31. lazy val textTop: T

    Permalink

    Aligns the top of the element with the top of the parent element's font.

    Aligns the top of the element with the top of the parent element's font. --MDN

  32. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  33. lazy val top: T

    Permalink

    Aligns the top of the element and its descendants with the top of the entire line.

    Aligns the top of the element and its descendants with the top of the entire line. --MDN

  34. 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

  35. lazy val vh: DerivedProp[Num]

    Permalink

    1 vh is equal to 1% of the height of the viewport's initial containing block --MDN

    1 vh is equal to 1% of the height of the viewport's initial containing block --MDN

    Definition Classes
    LengthUnits
  36. lazy val vmax: DerivedProp[Num]

    Permalink

    1 vmax is equal to the larger of 1 vw and 1 vh --MDN

    1 vmax is equal to the larger of 1 vw and 1 vh --MDN

    Definition Classes
    LengthUnits
  37. lazy val vmin: DerivedProp[Num]

    Permalink

    1 vmin is equal to the smaller of 1 vw and 1 vh --MDN

    1 vmin is equal to the smaller of 1 vw and 1 vh --MDN

    Definition Classes
    LengthUnits
  38. lazy val vw: DerivedProp[Num]

    Permalink

    1 vw is equal to 1% of the width of the viewport's initial containing block --MDN

    1 vw is equal to 1% of the width of the viewport's initial containing block --MDN

    Definition Classes
    LengthUnits
  39. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. 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 StyleStringValueBuilder[T]

Inherited from LengthUnits[DerivedProp, Num]

Inherited from CalcUnits[DerivedProp]

Inherited from DerivedStylePropBuilder[DerivedProp]

Inherited from AnyRef

Inherited from Any

Ungrouped