justifyContent

object justifyContent extends Style[String]

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.

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

class Style[String]
class Key
class Object
trait Matchable
class Any

Value members

Concrete fields

lazy val baseline: StyleSetter

Specifies participation in first- or last-baseline alignment: aligns the alignment baseline of the box’s first or last baseline set with the corresponding baseline in the shared first or last baseline set of all the boxes in its baseline-sharing group. The fallback alignment for first baseline is start, the one for last baseline is end.

Specifies participation in first- or last-baseline alignment: aligns the alignment baseline of the box’s first or last baseline set with the corresponding baseline in the shared first or last baseline set of all the boxes in its baseline-sharing group. The fallback alignment for first baseline is start, the one for last baseline is end.

MDN

lazy val center: StyleSetter

The items are packed flush to each other toward the center of the of the alignment container along the main axis.

The items are packed flush to each other toward the center of the of the alignment container along the main axis.

MDN

lazy val end: StyleSetter

The items are packed flush to each other toward the end edge of the alignment container in the main axis.

The items are packed flush to each other toward the end edge of the alignment container in the main axis.

MDN

lazy val firstBaseline: StyleSetter
lazy val flexEnd: StyleSetter

The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-end side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated like end.

The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-end side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated like end.

MDN

lazy val flexStart: StyleSetter

The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-start side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated like start.

The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-start side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated like start.

MDN

lazy val lastBaseline: StyleSetter
lazy val left: StyleSetter

The items are packed flush to each other toward the left edge of the alignment container. If the property’s axis is not parallel with the inline axis, this value behaves like start.

The items are packed flush to each other toward the left edge of the alignment container. If the property’s axis is not parallel with the inline axis, this value behaves like start.

MDN

lazy val normal: StyleSetter

The items are packed in their default position as if no justify-content value was set.

The items are packed in their default position as if no justify-content value was set.

MDN

lazy val right: StyleSetter

The items are packed flush to each other toward the right edge of the alignment container in the appropriate axis. If the property’s axis is not parallel with the inline axis, this value behaves like start.

The items are packed flush to each other toward the right edge of the alignment container in the appropriate axis. If the property’s axis is not parallel with the inline axis, this value behaves like start.

MDN

lazy val safe: StyleSetter

If the size of the item overflows the alignment container, the item is instead aligned as if the alignment mode were start.

If the size of the item overflows the alignment container, the item is instead aligned as if the alignment mode were start.

MDN

lazy val spaceAround: StyleSetter

The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The empty space before the first and after the last item equals half of the space between each pair of adjacent items.

The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The empty space before the first and after the last item equals half of the space between each pair of adjacent items.

MDN

lazy val spaceBetween: StyleSetter

The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The first item is flush with the main-start edge, and the last item is flush with the main-end edge.

The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The first item is flush with the main-start edge, and the last item is flush with the main-end edge.

MDN

lazy val spaceEvenly: StyleSetter

The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items, the main-start edge and the first item, and the main-end edge and the last item, are all exactly the same.

The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items, the main-start edge and the first item, and the main-end edge and the last item, are all exactly the same.

MDN

lazy val start: StyleSetter

The items are packed flush to each other toward the start edge of the alignment container in the main axis.

The items are packed flush to each other toward the start edge of the alignment container in the main axis.

MDN

lazy val stretch: StyleSetter

If the combined size of the items is less than the size of the alignment container, any auto-sized items have their size increased equally (not proportionally), while still respecting the constraints imposed by max-height/max-width (or equivalent functionality), so that the combined size exactly fills the alignment container along the main axis.

If the combined size of the items is less than the size of the alignment container, any auto-sized items have their size increased equally (not proportionally), while still respecting the constraints imposed by max-height/max-width (or equivalent functionality), so that the combined size exactly fills the alignment container along the main axis.

MDN

lazy val unsafe: StyleSetter

Regardless of the relative sizes of the item and alignment container, the given alignment value is honored.

Regardless of the relative sizes of the item and alignment container, the given alignment value is honored.

MDN

Inherited fields

override val name: String
Inherited from
Style