Trait

com.dispalt.vdom

HtmlStyles

Related Doc: package vdom

Permalink

trait HtmlStyles extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HtmlStyles
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait TextAlign extends ReactStyle

    Permalink

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. object alignContent extends Generic

    Permalink

    The CSS align-content property aligns a flex container's lines within the flex container when there is extra space on the cross-axis.

    The CSS align-content property aligns a flex container's lines within the flex container when there is extra space on the cross-axis. This property has no effect on single line flexible boxes.

    MDN

  5. object alignItems extends Generic

    Permalink

    The CSS align-items property aligns flex items of the current flex line the same way as justify-content but in the perpendicular direction.

    The CSS align-items property aligns flex items of the current flex line the same way as justify-content but in the perpendicular direction.

    MDN

  6. object alignSelf extends Generic

    Permalink

    The align-self CSS property aligns flex items of the current flex line overriding the align-items value.

    The align-self CSS property aligns flex items of the current flex line overriding the align-items value. If any of the flex item's cross-axis margin is set to auto, then align-self is ignored.

    MDN

  7. final lazy val animation: Generic

    Permalink

    The animation CSS property is a shorthand property for animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count and animation-direction.

    The animation CSS property is a shorthand property for animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count and animation-direction.

    MDN

  8. final lazy val animationDelay: MultiTimeStyle

    Permalink

    The animation-delay CSS property specifies when the animation should start.

    The animation-delay CSS property specifies when the animation should start. This lets the animation sequence begin some time after it's applied to an element.

    A value of 0s, which is the default value of the property, indicates that the animation should begin as soon as it's applied. Otherwise, the value specifies an offset from the moment the animation is applied to the element; animation will begin that amount of time after being applied.

    Specifying a negative value for the animation delay causes the animation to begin executing immediately. However, it will appear to have begun executing partway through its cycle. For example, if you specify -1s as the animation delay time, the animation will begin immediately but will start 1 second into the animation sequence.

    If you specify a negative value for the animation delay, but the starting value is implicit, the starting value is taken from the moment the animation is applied to the element.

    MDN

  9. final lazy val animationDirection: Generic

    Permalink

    The animation-direction CSS property indicates whether the animation should play in reverse on alternate cycles.

    The animation-direction CSS property indicates whether the animation should play in reverse on alternate cycles.

    MDN

  10. final lazy val animationDuration: Generic

    Permalink

    The animation-duration CSS property specifies the Length of time that an animation should take to complete one cycle.

    The animation-duration CSS property specifies the Length of time that an animation should take to complete one cycle.

    A value of 0s, which is the default value, indicates that no animation should occur.

    MDN

  11. final lazy val animationFillMode: Generic

    Permalink

    The animation-fill-mode CSS property specifies how a CSS animation should apply styles to its target before and after it is executing.

    The animation-fill-mode CSS property specifies how a CSS animation should apply styles to its target before and after it is executing.

    MDN

  12. final lazy val animationIterationCount: Generic

    Permalink

    The animation-iteration-count CSS property defines the number of times an animation cycle should be played before stopping.

    The animation-iteration-count CSS property defines the number of times an animation cycle should be played before stopping.

    MDN

  13. final lazy val animationName: Generic

    Permalink

    The animation-name CSS property specifies a list of animations that should be applied to the selected element.

    The animation-name CSS property specifies a list of animations that should be applied to the selected element. Each name indicates a @keyframes at-rule that defines the property values for the animation sequence.

    MDN

  14. final lazy val animationPlayState: Generic

    Permalink

    The animation-play-state CSS property determines whether an animation is running or paused.

    The animation-play-state CSS property determines whether an animation is running or paused. You can query this property's value to determine whether or not the animation is currently running; in addition, you can set its value to pause and resume playback of an animation.

    Resuming a paused animation will start the animation from where it left off at the time it was paused, rather than starting over from the beginning of the animation sequence.

    MDN

  15. final lazy val animationTimingFunction: Generic

    Permalink

    The CSS animation-timing-function property specifies how a CSS animation should progress over the duration of each cycle.

    The CSS animation-timing-function property specifies how a CSS animation should progress over the duration of each cycle. The possible values are one or several <timing-function>.

    For keyframed animations, the timing function applies between keyframes rather than over the entire animation. In other words, the timing function is applied at the start of the keyframe and at the end of the keyframe.

    An animation timing function defined within a keyframe block applies to that keyframe; otherwise. If no timing function is specified for the keyframe, the timing function specified for the overall animation is used.

    MDN

  16. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  17. object backfaceVisibility extends Generic

    Permalink

    The CSS backface-visibility property determines whether or not the back face of the element is visible when facing the user.

    The CSS backface-visibility property determines whether or not the back face of the element is visible when facing the user. The back face of an element always is a transparent background, letting, when visible, a mirror image of the front face be displayed.

    MDN

  18. final lazy val background: Generic

    Permalink

    The background CSS property is a shorthand for setting the individual background values in a single place in the style sheet.

    The background CSS property is a shorthand for setting the individual background values in a single place in the style sheet. background can be used to set the values for one or more of: background-clip, background-color, background-image, background-origin, background-position, background-repeat, background-size, and background-attachment.

    MDN

  19. object backgroundAttachment extends Generic

    Permalink

    If a background-image is specified, the background-attachment CSS property determines whether that image's position is fixed within the viewport, or scrolls along with its containing block.

    If a background-image is specified, the background-attachment CSS property determines whether that image's position is fixed within the viewport, or scrolls along with its containing block.

    MDN

  20. object backgroundClip extends Generic

    Permalink

    The background-clip CSS property specifies whether an element's background, either the color or image, extends underneath its border.

    The background-clip CSS property specifies whether an element's background, either the color or image, extends underneath its border.

    If there is no background image, this property has only visual effect when the border has transparent regions (because of border-style) or partially opaque regions; otherwise the border covers up the difference.

    MDN

  21. final lazy val backgroundColor: Generic

    Permalink

    The background-color CSS property sets the background color of an element, either through a color value or the keyword transparent.

    The background-color CSS property sets the background color of an element, either through a color value or the keyword transparent.

    MDN

  22. final lazy val backgroundImage: MultiImageStyle

    Permalink

    The CSS background-image property sets one or several background images for an element.

    The CSS background-image property sets one or several background images for an element. The images are drawn on successive stacking context layers, with the first specified being drawn as if it is the closest to the user. The borders of the element are then drawn on top of them, and the background-color is drawn beneath them.

    MDN

  23. object backgroundOrigin extends Generic

    Permalink

    The background-origin CSS property determines the background positioning area, that is the position of the origin of an image specified using the background-image CSS property.

    The background-origin CSS property determines the background positioning area, that is the position of the origin of an image specified using the background-image CSS property.

    Note that background-origin is ignored when background-attachment is fixed.

    MDN

  24. final lazy val backgroundPosition: Generic

    Permalink

    The background-position CSS property sets the initial position, relative to the background position layer defined by background-origin for each defined background image.

    The background-position CSS property sets the initial position, relative to the background position layer defined by background-origin for each defined background image.

    MDN

  25. final lazy val backgroundRepeat: Generic

    Permalink

    The background-repeat CSS property defines how background images are repeated.

    The background-repeat CSS property defines how background images are repeated. A background image can be repeated along the horizontal axis, the vertical axis, both, or not repeated at all. When the repetition of the image tiles doesn't let them exactly cover the background, the way adjustments are done can be controlled by the author: by default, the last image is clipped, but the different tiles can instead be re-sized, or space can be inserted between the tiles.

    MDN

  26. object backgroundSize extends Generic

    Permalink

    The background-size CSS property specifies the size of the background images.

    The background-size CSS property specifies the size of the background images. The size of the image can be fully constrained or only partially in order to preserve its intrinsic ratio.

    MDN

  27. final lazy val border: Generic

    Permalink

    The border CSS property is a shorthand property for setting the individual border property values in a single place in the style sheet.

    The border CSS property is a shorthand property for setting the individual border property values in a single place in the style sheet. border can be used to set the values for one or more of: border-width, border-style, border-color.

    MDN

  28. final lazy val borderBottom: Generic

    Permalink

    The border-bottom CSS property is a shorthand that sets the values of border-bottom-color, border-bottom-style, and border-bottom-width.

    The border-bottom CSS property is a shorthand that sets the values of border-bottom-color, border-bottom-style, and border-bottom-width. These properties describe the bottom border of elements.

    MDN

  29. final lazy val borderBottomColor: Generic

    Permalink

    The border-bottom-color CSS property sets the color of the bottom border of an element.

    The border-bottom-color CSS property sets the color of the bottom border of an element. Note that in many cases the shorthand CSS properties border-color or border-bottom are more convenient and preferable.

    MDN

  30. final lazy val borderBottomLeftRadius: BorderRadius

    Permalink

    The border-bottom-left-radius CSS property sets the rounding of the bottom-left corner of the element.

    The border-bottom-left-radius CSS property sets the rounding of the bottom-left corner of the element. The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.

    MDN

  31. final lazy val borderBottomRightRadius: BorderRadius

    Permalink

    The border-bottom-right-radius CSS property sets the rounding of the bottom-right corner of the element.

    The border-bottom-right-radius CSS property sets the rounding of the bottom-right corner of the element. The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.

    MDN

  32. final lazy val borderBottomStyle: BorderStyle

    Permalink

    The border-bottom-style CSS property sets the line style of the bottom border of a box.

    The border-bottom-style CSS property sets the line style of the bottom border of a box.

    MDN

  33. final lazy val borderBottomWidth: BorderWidth

    Permalink

    The border-bottom-width CSS property sets the width of the bottom border of a box.

    The border-bottom-width CSS property sets the width of the bottom border of a box.

    MDN

  34. object borderCollapse extends Generic

    Permalink

    The border-collapse CSS property selects a table's border model.

    The border-collapse CSS property selects a table's border model. This has a big influence on the look and style of the table cells.

    MDN

  35. final lazy val borderColor: Generic

    Permalink

    The border-color CSS property is a shorthand for setting the color of the four sides of an element's border: border-top-color, border-right-color, border-bottom-color, border-left-color

    The border-color CSS property is a shorthand for setting the color of the four sides of an element's border: border-top-color, border-right-color, border-bottom-color, border-left-color

    MDN

  36. final lazy val borderLeft: Generic

    Permalink

    The border-left CSS property is a shorthand that sets the values of border-left-color, border-left-style, and border-left-width.

    The border-left CSS property is a shorthand that sets the values of border-left-color, border-left-style, and border-left-width. These properties describe the left border of elements.

    The three values of the shorthand property can be specified in any order, and one or two of them may be omitted.

    MDN

  37. final lazy val borderLeftColor: Generic

    Permalink

    The border-right-color CSS property sets the color of the right border of an element.

    The border-right-color CSS property sets the color of the right border of an element. Note that in many cases the shorthand CSS properties border-color or border-right are more convenient and preferable.

    MDN

  38. final lazy val borderLeftStyle: BorderStyle

    Permalink

    The border-left-style CSS property sets the line style of the left border of a box.

    The border-left-style CSS property sets the line style of the left border of a box.

    MDN

  39. final lazy val borderLeftWidth: BorderWidth

    Permalink

    The border-left-width CSS property sets the width of the left border of a box.

    The border-left-width CSS property sets the width of the left border of a box.

    MDN

  40. final lazy val borderRadius: Generic

    Permalink

    The border-radius CSS property allows Web authors to define how rounded border corners are.

    The border-radius CSS property allows Web authors to define how rounded border corners are. The curve of each corner is defined using one or two radii, defining its shape: circle or ellipse.

    MDN

  41. final lazy val borderRight: Generic

    Permalink

    The border-right CSS property is a shorthand that sets the values of border-right-color, border-right-style, and border-right-width.

    The border-right CSS property is a shorthand that sets the values of border-right-color, border-right-style, and border-right-width. These properties describe the right border of elements.

    MDN

  42. final lazy val borderRightColor: Generic

    Permalink

    The border-right-color CSS property sets the color of the top border of an element.

    The border-right-color CSS property sets the color of the top border of an element. Note that in many cases the shorthand CSS properties border-color or border-right are more convenient and preferable.

    MDN

  43. final lazy val borderRightStyle: BorderStyle

    Permalink

    The border-right-style CSS property sets the line style of the right border of a box.

    The border-right-style CSS property sets the line style of the right border of a box.

    MDN

  44. final lazy val borderRightWidth: BorderWidth

    Permalink

    The border-right-width CSS property sets the width of the right border of a box.

    The border-right-width CSS property sets the width of the right border of a box.

    MDN

  45. object borderSpacing extends Generic

    Permalink

    The border-spacing CSS property specifies the distance between the borders of adjacent cells (only for the separated borders model).

    The border-spacing CSS property specifies the distance between the borders of adjacent cells (only for the separated borders model). This is equivalent to the cellspacing attribute in presentational HTML, but an optional second value can be used to set different horizontal and vertical spacing.

    MDN

  46. final lazy val borderStyle: BorderStyle

    Permalink

    The border-style CSS property is a shorthand property for setting the line style for all four sides of the elements border.

    The border-style CSS property is a shorthand property for setting the line style for all four sides of the elements border.

    MDN

  47. final lazy val borderTop: Generic

    Permalink

    The border-top CSS property is a shorthand that sets the values of border-top-color, border-top-style, and border-top-width.

    The border-top CSS property is a shorthand that sets the values of border-top-color, border-top-style, and border-top-width. These properties describe the top border of elements.

    MDN

  48. final lazy val borderTopColor: Generic

    Permalink

    The border-top-color CSS property sets the color of the top border of an element.

    The border-top-color CSS property sets the color of the top border of an element. Note that in many cases the shorthand CSS properties border-color or border-top are more convenient and preferable.

    MDN

  49. final lazy val borderTopLeftRadius: BorderRadius

    Permalink

    The border-top-left-radius CSS property sets the rounding of the top-left corner of the element.

    The border-top-left-radius CSS property sets the rounding of the top-left corner of the element. The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.

    MDN

  50. final lazy val borderTopRightRadius: BorderRadius

    Permalink

    The border-top-right-radius CSS property sets the rounding of the top-right corner of the element.

    The border-top-right-radius CSS property sets the rounding of the top-right corner of the element. The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.

    MDN

  51. final lazy val borderTopStyle: BorderStyle

    Permalink

    The border-top-style CSS property sets the line style of the top border of a box.

    The border-top-style CSS property sets the line style of the top border of a box.

    MDN

  52. final lazy val borderTopWidth: BorderWidth

    Permalink

    The border-top-width CSS property sets the width of the top border of a box.

    The border-top-width CSS property sets the width of the top border of a box.

    MDN

  53. final lazy val borderWidth: Generic

    Permalink

    The border-width CSS property sets the width of the border of a box.

    The border-width CSS property sets the width of the border of a box. Using the shorthand property border is often more convenient.

    MDN

  54. final lazy val bottom: AutoStyle

    Permalink

    The bottom CSS property participates in specifying the position of positioned elements.

    The bottom CSS property participates in specifying the position of positioned elements.

    For absolutely positioned elements, that is those with position: absolute or position: fixed, it specifies the distance between the bottom margin edge of the element and the bottom edge of its containing block.

    For relatively positioned elements, that is those with position: relative, it specifies the distance the element is moved above its normal position.

    However, the top property overrides the bottom property, so if top is not auto, the computed value of bottom is the negative of the computed value of top.

    MDN

  55. final lazy val boxShadow: Generic

    Permalink

    The box-shadow CSS property describes one or more shadow effects as a comma-separated list.

    The box-shadow CSS property describes one or more shadow effects as a comma-separated list. It allows casting a drop shadow from the frame of almost any element. If a border-radius is specified on the element with a box shadow, the box shadow takes on the same rounded corners. The z-ordering of multiple box shadows is the same as multiple text shadows (the first specified shadow is on top).

    MDN

  56. object boxSizing extends Generic

    Permalink

    The box-sizing CSS property is used to alter the default CSS box model used to calculate widths and heights of elements.

    The box-sizing CSS property is used to alter the default CSS box model used to calculate widths and heights of elements. It is possible to use this property to emulate the behavior of browsers that do not correctly support the CSS box model specification.

    MDN

  57. object captionSide extends Generic

    Permalink

    The caption-side CSS property positions the content of a table's caption on the specified side.

    The caption-side CSS property positions the content of a table's caption on the specified side.

    MDN

  58. object clear extends Generic

    Permalink

    The clear CSS property specifies whether an element can be next to floating elements that precede it or must be moved down (cleared) below them.

    The clear CSS property specifies whether an element can be next to floating elements that precede it or must be moved down (cleared) below them.

    The clear property applies to both floating and non-floating elements.

    MDN

  59. object clip extends Generic

    Permalink

    The clip CSS property defines what portion of an element is visible.

    The clip CSS property defines what portion of an element is visible. The clip property applies only to elements with position:absolute.

    MDN

  60. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. object color extends CurrentColor

    Permalink

    The CSS color property sets the foreground color of an element's text content, and its decorations.

    The CSS color property sets the foreground color of an element's text content, and its decorations. It doesn't affect any other characteristic of the element; it should really be called text-color and would have been named so, save for historical reasons and its appearance in CSS Level 1.

    MDN

  62. final lazy val columnCount: AutoStyle

    Permalink

    The column-count CSS property describes the number of columns of the element.

    The column-count CSS property describes the number of columns of the element.

    MDN

  63. object columnFill extends Generic

    Permalink

    The column-fill CSS property controls how contents are partitioned into columns.

    The column-fill CSS property controls how contents are partitioned into columns. Contents are either balanced, which means that contents in all columns will have the same height or, when using auto, just take up the room the content needs.

    MDN

  64. final lazy val columnGap: NormalOpenStyle

    Permalink

    The column-gap CSS property sets the size of the gap between columns for elements which are specified to display as a multi-column element.

    The column-gap CSS property sets the size of the gap between columns for elements which are specified to display as a multi-column element.

    MDN

  65. final lazy val columnRule: Generic

    Permalink

    In multi-column layouts, the column-rule CSS property specifies a straight line, or "rule", to be drawn between each column.

    In multi-column layouts, the column-rule CSS property specifies a straight line, or "rule", to be drawn between each column. It is a convenient shorthand to avoid setting each of the individual column-rule-* properties separately : column-rule-width, column-rule-style and column-rule-color.

    MDN

  66. final lazy val columnRuleColor: Generic

    Permalink

    The column-rule-color CSS property lets you set the color of the rule drawn between columns in multi-column layouts.

    The column-rule-color CSS property lets you set the color of the rule drawn between columns in multi-column layouts.

    MDN

  67. object columnRuleStyle extends OutlineStyle

    Permalink

    The column-rule-style CSS property lets you set the style of the rule drawn between columns in multi-column layouts.

    The column-rule-style CSS property lets you set the style of the rule drawn between columns in multi-column layouts.

    MDN

  68. object columnRuleWidth extends Generic

    Permalink

    The column-rule-width CSS property lets you set the width of the rule drawn between columns in multi-column layouts.

    The column-rule-width CSS property lets you set the width of the rule drawn between columns in multi-column layouts.

    MDN

  69. object columnSpan extends Generic

    Permalink

    The column-span CSS property makes it possible for an element to span across all columns when its value is set to all.

    The column-span CSS property makes it possible for an element to span across all columns when its value is set to all. An element that spans more than one column is called a spanning element.

    MDN

  70. final lazy val columnWidth: AutoStyle

    Permalink

    The column-width CSS property suggests an optimal column width.

    The column-width CSS property suggests an optimal column width. This is not a absolute value but a mere hint. Browser will adjust the width of the column around that suggested value, allowing to achieve scalable designs that fit different screen size. Especially in presence of the column-count CSS property which has precedence, to set an exact column width, all Length values must be specified. In horizontal text these are width, column-width, column-gap, and column-rule-width

    MDN

  71. object columns extends Generic

    Permalink

    The columns CSS property is a shorthand property allowing to set both the column-width and the column-count properties at the same time.

    The columns CSS property is a shorthand property allowing to set both the column-width and the column-count properties at the same time.

    MDN

  72. final lazy val contentStyle: Generic

    Permalink

    The content CSS property is used with the ::before and ::after pseudo-elements to generate content in an element.

    The content CSS property is used with the ::before and ::after pseudo-elements to generate content in an element. Objects inserted using the content property are anonymous replaced elements.

    MDN

  73. final lazy val counterIncrement: Generic

    Permalink

    The counter-increment CSS property is used to increase the value of CSS Counters by a given value.

    The counter-increment CSS property is used to increase the value of CSS Counters by a given value. The counter's value can be reset using the counter-reset CSS property.

    MDN

  74. final lazy val counterReset: Generic

    Permalink

    The counter-reset CSS property is used to reset CSS Counters to a given value.

    The counter-reset CSS property is used to reset CSS Counters to a given value.

    MDN

  75. object cursor extends Generic

    Permalink

    The cursor CSS property specifies the mouse cursor displayed when the mouse pointer is over an element.

    The cursor CSS property specifies the mouse cursor displayed when the mouse pointer is over an element.

    MDN

  76. object direction extends Generic

    Permalink

    Set the direction CSS property to match the direction of the text: rtl for Hebrew or Arabic text and ltr for other scripts.

    Set the direction CSS property to match the direction of the text: rtl for Hebrew or Arabic text and ltr for other scripts. This is typically done as part of the document (e.g., using the dir attribute in HTML) rather than through direct use of CSS.

    The property sets the base text direction of block-level elements and the direction of embeddings created by the unicode-bidi property. It also sets the default alignment of text and block-level elements and the direction that cells flow within a table row.

    Unlike the dir attribute in HTML, the direction property is not inherited from table columns into table cells, since CSS inheritance follows the document tree, and table cells are inside of the rows but not inside of the columns.

    The direction and unicode-bidi properties are the two only properties which are not affected by the all shorthand.

    MDN

  77. object display extends Generic

    Permalink

    The display CSS property specifies the type of rendering box used for an element.

    The display CSS property specifies the type of rendering box used for an element. In HTML, default display property values are taken from behaviors described in the HTML specifications or from the browser/user default stylesheet. The default value in XML is inline.

    In addition to the many different display box types, the value none lets you turn off the display of an element; when you use none, all descendant elements also have their display turned off. The document is rendered as though the element doesn't exist in the document tree.

    MDN

  78. object emptyCells extends Generic

    Permalink

    he empty-cells CSS property specifies how user agents should render borders and backgrounds around cells that have no visible content.

    he empty-cells CSS property specifies how user agents should render borders and backgrounds around cells that have no visible content.

    MDN

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  81. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  82. final lazy val flex: Generic

    Permalink

    The flex CSS property is a shorthand property specifying the ability of a flex item to alter its dimensions to fill available space.

    The flex CSS property is a shorthand property specifying the ability of a flex item to alter its dimensions to fill available space. Flex items can be stretched to use available space proportional to their flex grow factor or their flex shrink factor to prevent overflow.

    MDN

  83. final lazy val flexBasis: Generic

    Permalink

    The CSS flex-basis property specifies the flex basis which is the initial main size of a flex item.

    The CSS flex-basis property specifies the flex basis which is the initial main size of a flex item. The property determines the size of the content-box unless specified otherwise using box-sizing.

    MDN

  84. object flexDirection extends Generic

    Permalink

    The CSS flex-direction property specifies how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).

    The CSS flex-direction property specifies how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).

    Note that the value row and row-reverse are affected by the directionality of the flex container. If its dir attribute is ltr, row represents the horizontal axis oriented from the left to the right, and row-reverse from the right to the left; if the dir attribute is rtl, row represents the axis oriented from the right to the left, and row-reverse from the left to the right.

    MDN

  85. final lazy val flexGrow: Generic

    Permalink

    The CSS flex-grow property specifies the flex grow factor of a flex item.

    The CSS flex-grow property specifies the flex grow factor of a flex item.

    MDN

  86. final lazy val flexShrink: Generic

    Permalink

    The CSS flex-shrink property specifies the flex shrink factor of a flex item.

    The CSS flex-shrink property specifies the flex shrink factor of a flex item.

    MDN

  87. object flexWrap extends Generic

    Permalink

    The CSS flex-wrap property specifies whether the children are forced into a single line or if the items can be flowed on multiple lines.

    The CSS flex-wrap property specifies whether the children are forced into a single line or if the items can be flowed on multiple lines.

    MDN

  88. object float extends Generic

    Permalink

    The float CSS property specifies that an element should be taken from the normal flow and placed along the left or right side of its container, where text and inline elements will wrap around it.

    The float CSS property specifies that an element should be taken from the normal flow and placed along the left or right side of its container, where text and inline elements will wrap around it. A floating element is one where the computed value of float is not none.

    MDN

  89. final lazy val font: Generic

    Permalink

    The font CSS property is either a shorthand property for setting font-style, font-variant, font-weight, font-size, line-height and font-family, or a way to set the element's font to a system font, using specific keywords.

    The font CSS property is either a shorthand property for setting font-style, font-variant, font-weight, font-size, line-height and font-family, or a way to set the element's font to a system font, using specific keywords.

    MDN

  90. final lazy val fontFamily: Generic

    Permalink

    The font-family CSS property allows for a prioritized list of font family names and/or generic family names to be specified for the selected element.

    The font-family CSS property allows for a prioritized list of font family names and/or generic family names to be specified for the selected element. Unlike most other CSS properties, values are separated by a comma to indicate that they are alternatives. The browser will select the first font on the list that is installed on the computer, or that can be downloaded using the information provided by a @font-face at-rule.

    MDN

  91. final lazy val fontFeatureSettings: Generic

    Permalink

    The font-feature-settings CSS property allows control over advanced typographic features in OpenType fonts.

    The font-feature-settings CSS property allows control over advanced typographic features in OpenType fonts.

    MDN

  92. object fontSize extends Generic

    Permalink

    The font-size CSS property specifies the size of the font – specifically the desired height of glyphs from the font.

    The font-size CSS property specifies the size of the font – specifically the desired height of glyphs from the font. Setting the font size may, in turn, change the size of other items, since it is used to compute the value of em and ex Length units.

    MDN

  93. final lazy val fontSizeAdjust: Generic

    Permalink

    The font-size-adjust CSS property specifies that font size should be chosen based on the height of lowercase letters rather than the height of capital letters.

    The font-size-adjust CSS property specifies that font size should be chosen based on the height of lowercase letters rather than the height of capital letters.

    This is useful since the legibility of fonts, especially at small sizes, is determined more by the size of lowercase letters than by the size of capital letters. This can cause problems when the first-choice font-family is unavailable and its replacement has a significantly different aspect ratio (the ratio of the size of lowercase letters to the size of the font).

    MDN

  94. object fontStyle extends Generic

    Permalink

    The font-style CSS property allows italic or oblique faces to be selected within a font-family.

    The font-style CSS property allows italic or oblique faces to be selected within a font-family.

    MDN

  95. object fontWeight extends Generic

    Permalink

    The font-weight CSS property specifies the weight or boldness of the font.

    The font-weight CSS property specifies the weight or boldness of the font. However, some fonts are not available in all weights; some are available only on normal and bold.

    Numeric font weights for fonts that provide more than just normal and bold. If the exact weight given is unavailable, then 600-900 use the closest available darker weight (or, if there is none, the closest available lighter weight), and 100-500 use the closest available lighter weight (or, if there is none, the closest available darker weight). This means that for fonts that provide only normal and bold, 100-500 are normal, and 600-900 are bold.

    MDN

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

    Permalink
    Definition Classes
    AnyRef → Any
  97. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  98. final lazy val height: AutoStyle

    Permalink

    The height CSS property specifies the height of the content area of an element.

    The height CSS property specifies the height of the content area of an element. The content area is inside the padding, border, and margin of the element.

    The min-height and max-height properties override height.

    MDN

  99. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  100. object justifyContent extends Generic

    Permalink

    The CSS justify-content property defines how a browser distributes available space between and around elements when aligning flex items in the main-axis of the current line.

    The CSS justify-content property defines how a browser distributes available space between and around elements when aligning flex items in the main-axis of the current line. The alignment is done after the lengths and auto margins are applied, meaning that, if there is at least one flexible element, with flex-grow different than 0, it will have no effect as there won't be any available space.

    MDN

  101. final lazy val left: AutoStyle

    Permalink

    The left CSS property specifies part of the position of positioned elements.

    The left CSS property specifies part of the position of positioned elements.

    For absolutely positioned elements (those with position: absolute or position: fixed), it specifies the distance between the left margin edge of the element and the left edge of its containing block.

    MDN

  102. final lazy val letterSpacing: NormalOpenStyle

    Permalink

    The letter-spacing CSS property specifies spacing behavior between text characters.

    The letter-spacing CSS property specifies spacing behavior between text characters.

    MDN

  103. final lazy val lineHeight: NormalOpenStyle

    Permalink

    On block level elements, the line-height CSS property specifies the minimal height of line boxes within the element.

    On block level elements, the line-height CSS property specifies the minimal height of line boxes within the element.

    On non-replaced inline elements, line-height specifies the height that is used in the calculation of the line box height.

    On replaced inline elements, like buttons or other input element, line-height has no effect.

    MDN

  104. final lazy val listStyle: Generic

    Permalink

    The list-style CSS property is a shorthand property for setting list-style-type, list-style-image and list-style-position.

    The list-style CSS property is a shorthand property for setting list-style-type, list-style-image and list-style-position.

    MDN

  105. object listStyleImage extends Generic

    Permalink

    The list-style-image CSS property sets the image that will be used as the list item marker.

    The list-style-image CSS property sets the image that will be used as the list item marker. It is often more convenient to use the shorthand list-style.

    MDN

  106. object listStylePosition extends Generic

    Permalink

    The list-style-position CSS property specifies the position of the marker box in the principal block box.

    The list-style-position CSS property specifies the position of the marker box in the principal block box. It is often more convenient to use the shortcut list-style.

    MDN

  107. object listStyleType extends Generic

    Permalink

    The list-style-type CSS property specifies appearance of a list item element.

    The list-style-type CSS property specifies appearance of a list item element. As it is the only one who defaults to display:list-item, this is usually a li element, but can be any element with this display value.

    MDN

  108. object margin extends Generic

    Permalink

    The margin CSS property sets the margin for all four sides.

    The margin CSS property sets the margin for all four sides. It is a shorthand to avoid setting each side separately with the other margin properties: margin-top, margin-right, margin-bottom and margin-left.

    Negative values are also allowed.

    MDN

  109. final lazy val marginBottom: AutoStyle

    Permalink

    The margin-bottom CSS property of an element sets the margin space required on the bottom of an element.

    The margin-bottom CSS property of an element sets the margin space required on the bottom of an element. A negative value is also allowed.

    MDN

  110. final lazy val marginLeft: Generic with MarginAuto

    Permalink

    The margin-left CSS property of an element sets the margin space required on the left side of a box associated with an element.

    The margin-left CSS property of an element sets the margin space required on the left side of a box associated with an element. A negative value is also allowed.

    The vertical margins of two adjacent boxes may fuse. This is called margin collapsing.

    MDN

  111. final lazy val marginRight: Generic with MarginAuto

    Permalink

    The margin-right CSS property of an element sets the margin space required on the bottom of an element.

    The margin-right CSS property of an element sets the margin space required on the bottom of an element. A negative value is also allowed.

    MDN

  112. final lazy val marginTop: Generic with MarginAuto

    Permalink

    The margin-top CSS property of an element sets the margin space required on the top of an element.

    The margin-top CSS property of an element sets the margin space required on the top of an element. A negative value is also allowed.

    MDN

  113. object mask extends Generic

    Permalink

    If the value is a URI value, the element pointed to by the URI is used as an SVG mask.

    If the value is a URI value, the element pointed to by the URI is used as an SVG mask.

    MDN

  114. final lazy val maxHeight: NoneOpenStyle

    Permalink

    The max-height CSS property is used to set the maximum height of a given element.

    The max-height CSS property is used to set the maximum height of a given element. It prevents the used value of the height property from becoming larger than the value specified for max-height.

    max-height overrides height, but min-height overrides max-height.

    MDN

  115. final lazy val maxWidth: Generic

    Permalink

    The max-width CSS property is used to set the maximum width of a given element.

    The max-width CSS property is used to set the maximum width of a given element. It prevents the used value of the width property from becoming larger than the value specified for max-width.

    max-width overrides width, but min-width overrides max-width.

    MDN

  116. final lazy val minHeight: Generic

    Permalink

    The min-height CSS property is used to set the minimum height of a given element.

    The min-height CSS property is used to set the minimum height of a given element. It prevents the used value of the height property from becoming smaller than the value specified for min-height.

    The value of min-height overrides both max-height and height.

    MDN

  117. final lazy val minWidth: Generic

    Permalink

    The min-width CSS property is used to set the minimum width of a given element.

    The min-width CSS property is used to set the minimum width of a given element. It prevents the used value of the width property from becoming smaller than the value specified for min-width.

    The value of min-width overrides both max-width and width.

    MDN

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

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

    Permalink
    Definition Classes
    AnyRef
  120. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  121. final lazy val opacity: Generic

    Permalink

    The opacity CSS property specifies the transparency of an element, that is, the degree to which the background behind the element is overlaid.

    The opacity CSS property specifies the transparency of an element, that is, the degree to which the background behind the element is overlaid.

    The value applies to the element as a whole, including its contents, even though the value is not inherited by child elements. Thus, an element and its contained children all have the same opacity relative to the element's background, even if the element and its children have different opacities relative to one another.

    Using this property with a value different than 1 places the element in a new stacking context.

    MDN

  122. final lazy val orphans: Generic

    Permalink

    The orphans CSS property refers to the minimum number of lines in a block container that must be left at the bottom of the page.

    The orphans CSS property refers to the minimum number of lines in a block container that must be left at the bottom of the page. This property is normally used to control how page breaks occur.

    MDN

  123. final lazy val outline: Generic

    Permalink

    The CSS outline property is a shorthand property for setting one or more of the individual outline properties outline-style, outline-width and outline-color in a single rule.

    The CSS outline property is a shorthand property for setting one or more of the individual outline properties outline-style, outline-width and outline-color in a single rule. In most cases the use of this shortcut is preferable and more convenient.

    Outlines do not take up space, they are drawn above the content.

    MDN

  124. object outlineColor extends Generic

    Permalink

    The outline-color CSS property sets the color of the outline of an element.

    The outline-color CSS property sets the color of the outline of an element. An outline is a line that is drawn around elements, outside the border edge, to make the element stand out.

    MDN

  125. final lazy val outlineStyle: OutlineStyle

    Permalink

    The outline-style CSS property is used to set the style of the outline of an element.

    The outline-style CSS property is used to set the style of the outline of an element. An outline is a line that is drawn around elements, outside the border edge, to make the element stand out.

    MDN

  126. object outlineWidth extends Generic

    Permalink

    The outline-width CSS property is used to set the width of the outline of an element.

    The outline-width CSS property is used to set the width of the outline of an element. An outline is a line that is drawn around elements, outside the border edge, to make the element stand out.

    MDN

  127. final lazy val overflow: Overflow

    Permalink

    The overflow CSS property specifies whether to clip content, render scroll bars or display overflow content of a block-level element.

    The overflow CSS property specifies whether to clip content, render scroll bars or display overflow content of a block-level element.

    MDN

  128. final lazy val overflowX: Overflow

    Permalink

    The overflow-x CSS property specifies whether to clip content, render a scroll bar or display overflow content of a block-level element, when it overflows at the left and right edges.

    The overflow-x CSS property specifies whether to clip content, render a scroll bar or display overflow content of a block-level element, when it overflows at the left and right edges.

    MDN

  129. final lazy val overflowY: Overflow

    Permalink

    The overflow-y CSS property specifies whether to clip content, render a scroll bar, or display overflow content of a block-level element, when it overflows at the top and bottom edges.

    The overflow-y CSS property specifies whether to clip content, render a scroll bar, or display overflow content of a block-level element, when it overflows at the top and bottom edges.

    MDN

  130. final lazy val padding: Generic

    Permalink

    The padding CSS property sets the required padding space on all sides of an element.

    The padding CSS property sets the required padding space on all sides of an element. The padding area is the space between the content of the element and its border. Negative values are not allowed.

    The padding property is a shorthand to avoid setting each side separately (padding-top, padding-right, padding-bottom, padding-left).

    MDN

  131. final lazy val paddingBottom: Generic

    Permalink

    The padding-bottom CSS property of an element sets the height of the padding area at the bottom of an element.

    The padding-bottom CSS property of an element sets the height of the padding area at the bottom of an element. The padding area is the space between the content of the element and it's border. Contrary to margin-bottom values, negative values of padding-bottom are invalid.

    MDN

  132. final lazy val paddingLeft: Generic

    Permalink

    The padding-left CSS property of an element sets the padding space required on the left side of an element.

    The padding-left CSS property of an element sets the padding space required on the left side of an element. The padding area is the space between the content of the element and it's border. A negative value is not allowed.

    MDN

  133. final lazy val paddingRight: Generic

    Permalink

    The padding-right CSS property of an element sets the padding space required on the right side of an element.

    The padding-right CSS property of an element sets the padding space required on the right side of an element. The padding area is the space between the content of the element and its border. Negative values are not allowed.

    MDN

  134. final lazy val paddingTop: Generic

    Permalink

    The padding-top CSS property of an element sets the padding space required on the top of an element.

    The padding-top CSS property of an element sets the padding space required on the top of an element. The padding area is the space between the content of the element and its border. Contrary to margin-top values, negative values of padding-top are invalid.

    MDN

  135. final lazy val pageBreakAfter: PageBreak

    Permalink

    The page-break-after CSS property adjusts page breaks after the current element.

    The page-break-after CSS property adjusts page breaks after the current element.

    MDN

  136. final lazy val pageBreakBefore: PageBreak

    Permalink

    The page-break-before CSS property adjusts page breaks before the current element.

    The page-break-before CSS property adjusts page breaks before the current element.

    This properties applies to block elements that generate a box. It won't apply on an empty div that won't generate a box.

    MDN

  137. final lazy val pageBreakInside: PageBreak

    Permalink

    The page-break-inside CSS property adjusts page breaks inside the current element.

    The page-break-inside CSS property adjusts page breaks inside the current element.

    MDN

  138. final lazy val perspective: NoneOpenStyle

    Permalink

    The perspective CSS property determines the distance between the z=0 plane and the user in order to give to the 3D-positioned element some perspective.

    The perspective CSS property determines the distance between the z=0 plane and the user in order to give to the 3D-positioned element some perspective. Each 3D element with z>0 becomes larger; each 3D-element with z<0 becomes smaller. The strength of the effect is determined by the value of this property.

    MDN

  139. final lazy val perspectiveOrigin: Generic

    Permalink

    The perspective-origin CSS property determines the position the viewer is looking at.

    The perspective-origin CSS property determines the position the viewer is looking at. It is used as the vanishing point by the perspective property.

    MDN

  140. object pointerEvents extends Generic

    Permalink

    The CSS property pointer-events allows authors to control under what circumstances (if any) a particular graphic element can become the target of mouse events.

    The CSS property pointer-events allows authors to control under what circumstances (if any) a particular graphic element can become the target of mouse events. When this property is unspecified, the same characteristics of the visiblePainted value apply to SVG content.

    In addition to indicating that the element is not the target of mouse events, the value none instructs the mouse event to go "through" the element and target whatever is "underneath" that element instead.

    MDN

  141. object position extends Generic

    Permalink

    The position CSS property chooses alternative rules for positioning elements, designed to be useful for scripted animation effects.

    The position CSS property chooses alternative rules for positioning elements, designed to be useful for scripted animation effects.

    MDN

  142. object quotes extends Generic

    Permalink
  143. final lazy val right: AutoStyle

    Permalink

    The right CSS property specifies part of the position of positioned elements.

    The right CSS property specifies part of the position of positioned elements.

    For absolutely positioned elements (those with position: absolute or position: fixed), it specifies the distance between the right margin edge of the element and the right edge of its containing block.

    The right property has no effect on non-positioned elements.

    When both the right CSS property and the left CSS property are defined, the position of the element is overspecified. In that case, the left value has precedence when the container is left-to-right (that is that the right computed value is set to -left), and the right value has precedence when the container is right-to-left (that is that the left computed value is set to -right).

    MDN

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

    Permalink
    Definition Classes
    AnyRef
  145. object tableLayout extends Generic

    Permalink
  146. final lazy val textAlign: Generic with TextAlign

    Permalink

    The text-align CSS property describes how inline content like text is aligned in its parent block element.

    The text-align CSS property describes how inline content like text is aligned in its parent block element. text-align does not control the alignment of block elements itself, only their inline content.

    MDN

  147. final lazy val textAlignLast: Generic with TextAlign

    Permalink

    The text-align-last CSS property describes how the last line of a block or a line, right before a forced line break, is aligned.

    The text-align-last CSS property describes how the last line of a block or a line, right before a forced line break, is aligned.

    MDN

  148. object textDecoration extends Generic

    Permalink

    The text-decoration CSS property is used to set the text formatting to underline, overline, line-through or blink.

    The text-decoration CSS property is used to set the text formatting to underline, overline, line-through or blink.

    MDN

  149. final lazy val textIndent: Generic

    Permalink

    The text-indent CSS property specifies how much horizontal space should be left before the beginning of the first line of the text content of an element.

    The text-indent CSS property specifies how much horizontal space should be left before the beginning of the first line of the text content of an element. Horizontal spacing is with respect to the left (or right, for right-to-left layout) edge of the containing block element's box.

    MDN

  150. object textOverflow extends Generic

    Permalink

    The text-overflow CSS property determines how overflowed content that is not displayed is signaled to the users.

    The text-overflow CSS property determines how overflowed content that is not displayed is signaled to the users. It can be clipped, or display an ellipsis ('…', U+2026 HORIZONTAL ELLIPSIS) or a Web author-defined string.

    MDN

  151. final lazy val textShadow: NoneOpenStyle

    Permalink

    The text-shadow CSS property adds shadows to text.

    The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and text-decorations of the element.

    Each shadow is specified as an offset from the text, along with optional color and blur radius values.

    Multiple shadows are applied front-to-back, with the first-specified shadow on top.

    MDN

  152. object textTransform extends Generic

    Permalink

    The text-transform CSS property specifies how to capitalize an element's text.

    The text-transform CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.

    MDN

  153. object textUnderlinePosition extends Generic

    Permalink

    The CSS text-underline-position property specifies the position of the underline which is set using the text-decoration property underline value.

    The CSS text-underline-position property specifies the position of the underline which is set using the text-decoration property underline value.

    This property inherits and is not reset by the text-decoration shorthand, allowing to easily set it globally for a given document.

    MDN

  154. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  155. final lazy val top: AutoStyle

    Permalink

    The top CSS property specifies part of the position of positioned elements.

    The top CSS property specifies part of the position of positioned elements. It has no effect on non-positioned elements.

    For absolutely positioned elements (those with position: absolute or position: fixed), it specifies the distance between the top margin edge of the element and the top edge of its containing block.

    For relatively positioned elements (those with position: relative), it specifies the amount the element is moved below its normal position.

    When both top and bottom are specified, the element position is over-constrained and the top property has precedence: the computed value of bottom is set to -top, while its specified value is ignored.

    MDN

  156. final lazy val transform: Generic

    Permalink

    The CSS transform property lets you modify the coordinate space of the CSS visual formatting model.

    The CSS transform property lets you modify the coordinate space of the CSS visual formatting model. Using it, elements can be translated, rotated, scaled, and skewed according to the values set.

    If the property has a value different than none, a stacking context will be created. In that case the object will act as a containing block for position: fixed elements that it contains.

    MDN

  157. final lazy val transformOrigin: Generic

    Permalink

    The transform-origin CSS property lets you modify the origin for transformations of an element.

    The transform-origin CSS property lets you modify the origin for transformations of an element. For example, the transform-origin of the rotate() function is the centre of rotation. (This property is applied by first translating the element by the negated value of the property, then applying the element's transform, then translating by the property value.)

    Not explicitely set values are reset to their corresponding values.

    MDN

  158. object transformStyle extends Generic

    Permalink

    The transform-style CSS property determines if the children of the element are positioned in the 3D-space or are flattened in the plane of the element.

    The transform-style CSS property determines if the children of the element are positioned in the 3D-space or are flattened in the plane of the element.

    MDN

  159. final lazy val transition: Generic

    Permalink

    The CSS transition property is a shorthand property for transition-property, transition-duration, transition-timing-function, and transition-delay.

    The CSS transition property is a shorthand property for transition-property, transition-duration, transition-timing-function, and transition-delay. It allows to define the transition between two states of an element. Different states may be defined using pseudo-classes like :hover or :active or dynamically set using JavaScript.

    MDN

  160. final lazy val transitionDelay: MultiTimeStyle

    Permalink

    The transition-delay CSS property specifies the amount of time to wait between a change being requested to a property that is to be transitioned and the start of the transition effect.

    The transition-delay CSS property specifies the amount of time to wait between a change being requested to a property that is to be transitioned and the start of the transition effect.

    A value of 0s, or 0ms, indicates that the property will begin to animate its transition immediately when the value changes; positive values will delay the start of the transition effect for the corresponding number of seconds. Negative values cause the transition to begin immediately, but to cause the transition to seem to begin partway through the animation effect.

    You may specify multiple delays; each delay will be applied to the corresponding property as specified by the transition-property property, which acts as a master list. If there are fewer delays specified than in the master list, missing values are set to the initial value (0s). If there are more delays, the list is simply truncated to the right size. In both case the CSS declaration stays valid.

    MDN

  161. final lazy val transitionDuration: MultiTimeStyle

    Permalink

    The transition-duration CSS property specifies the number of seconds or milliseconds a transition animation should take to complete.

    The transition-duration CSS property specifies the number of seconds or milliseconds a transition animation should take to complete. By default, the value is 0s, meaning that no animation will occur.

    You may specify multiple durations; each duration will be applied to the corresponding property as specified by the transition-property property, which acts as a master list. If there are fewer durations specified than in the master list, the user agent repeat the list of durations. If there are more durations, the list is simply truncated to the right size. In both case the CSS declaration stays valid.

    MDN

  162. final lazy val transitionProperty: Generic

    Permalink

    The transition-property CSS property is used to specify the names of CSS properties to which a transition effect should be applied.

    The transition-property CSS property is used to specify the names of CSS properties to which a transition effect should be applied.

    MDN

  163. final lazy val transitionTimingFunction: Generic

    Permalink

    The CSS transition-timing-function property is used to describe how the intermediate values of the CSS properties being affected by a transition effect are calculated.

    The CSS transition-timing-function property is used to describe how the intermediate values of the CSS properties being affected by a transition effect are calculated. This in essence lets you establish an acceleration curve, so that the speed of the transition can vary over its duration.

    MDN

  164. object unicodeBidi extends Generic

    Permalink

    The unicode-bidi CSS property together with the direction property relates to the handling of bidirectional text in a document.

    The unicode-bidi CSS property together with the direction property relates to the handling of bidirectional text in a document. For example, if a block of text contains both left-to-right and right-to-left text then the user-agent uses a complex Unicode algorithm to decide how to display the text. This property overrides this algorithm and allows the developer to control the text embedding.

    MDN

  165. object verticalAlign extends Generic

    Permalink

    The vertical-align CSS property specifies the vertical alignment of an inline or table-cell box.

    The vertical-align CSS property specifies the vertical alignment of an inline or table-cell box.

    MDN

  166. object visibility extends Generic

    Permalink
  167. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  168. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  170. object whiteSpace extends Generic

    Permalink

    The white-space CSS property is used to to describe how whitespace inside the element is handled.

    The white-space CSS property is used to to describe how whitespace inside the element is handled.

    MDN

  171. final lazy val widows: Generic

    Permalink

    The widows CSS property defines how many minimum lines must be left on top of a new page, on a paged media.

    The widows CSS property defines how many minimum lines must be left on top of a new page, on a paged media. In typography, a widow is the last line of a paragraph appearing alone at the top of a page. Setting the widows property allows to prevent widows to be left.

    On a non-paged media, like screen, the widows CSS property has no effect.

    MDN

  172. final lazy val width: AutoStyle

    Permalink

    The width CSS property specifies the width of the content area of an element.

    The width CSS property specifies the width of the content area of an element. The content area is inside the padding, border, and margin of the element.

    The min-width and max-width properties override width.

    MDN

  173. object wordBreak extends Generic

    Permalink

    The word-break CSS property is used to specify how (or if) to break lines within words.

    The word-break CSS property is used to specify how (or if) to break lines within words.

    MDN

  174. final lazy val wordSpacing: NormalOpenStyle

    Permalink

    The word-spacing CSS property specifies spacing behavior between tags and words.

    The word-spacing CSS property specifies spacing behavior between tags and words.

    MDN

  175. object wordWrap extends Generic

    Permalink
  176. final lazy val zIndex: AutoStyle

    Permalink

    The z-index CSS property specifies the z-order of an element and its descendants.

    The z-index CSS property specifies the z-order of an element and its descendants. When elements overlap, z-order determines which one covers the other. An element with a larger z-index generally covers an element with a lower one.

    MDN

Inherited from AnyRef

Inherited from Any

Ungrouped