Home>Article>Web Front-end> How to use css align-self attribute

How to use css align-self attribute

青灯夜游
青灯夜游 Original
2019-05-25 18:08:33 4143browse

css align-self attribute is used to define the alignment of flex items individually in the side axis (vertical axis) direction: stretched to fit the container, located in the center of the container, located at the beginning of the container, located at the end of the container, located at on the container's baseline.

How to use css align-self attribute

css align-self property

The align-self property is a sub-property of the Flexible Box Layout module .

Function:Define the alignment of flex items individually in the direction of the side axis (vertical axis).

Note:The align-self attribute can override the align-items attribute of the flexible container.

Syntax

align-self: auto|stretch|center|flex-start|flex-end|baseline|initial|inherit;

Attribute value:

auto: Default value. The element inherits the align-items property of its parent container. "stretch" if there is no parent container.

How to use css align-self attribute

#stretch: The element is stretched to fit the container. If the property specifying the cross-axis size is 'auto', then its value will make the size of the item's margin box as close as possible to the size of the row, but at the same time respecting the constraints of the 'min/max-width/height' properties.

How to use css align-self attribute

center: The element is located in the center of the container. The flexbox element is centered on the cross (vertical) axis of the row. (If the size of the row is smaller than the size of the flexbox element, it will overflow the same length in both directions).

How to use css align-self attribute

#flex-start: The element is located at the beginning of the container. The border of the flexbox element's cross-axis (vertical) starting position is close to the cross-axis starting border of the row.

How to use css align-self attribute

flex-end: The element is located at the end of the container. The starting edge of the flexbox element's cross axis (vertical axis) is close to the end edge of the row's cross axis.

How to use css align-self attribute

#baseline: The element is located on the baseline of the container. If the inline axis and the cross axis of the flexbox element are the same, this value is equivalent to 'flex-start'. Otherwise, this value will participate in baseline alignment.

How to use css align-self attribute

css align-self attribute usage example

     
  • 1
  • 2
  • 3
  • 4
  • 5

Rendering:

How to use css align-self attribute

The above is the detailed content of How to use css align-self attribute. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn