Several methods of horizontal and vertical centering of div content using css3 flex

Several methods of horizontal and vertical centering of div content using css3 flex

1. flex-direction: (direction of element arrangement)

※ flex-direction:row (arranged horizontally from left to right == left alignment)

※ flex-direction: row-reverse (opposite to row)

※ flex-direction:column (arrange from top to bottom == top alignment)

※ flex-direction:column-reverse (opposite to column)

2. flex-wrap: (only effective when the content cannot fit in one line)

※flex-wrap:nowrap (no line break if the content exceeds the limit, strangely the width inside will become 100%)

※ flex-wrap:wrap (exceeding the height is divided equally by the parent’s height)

※flex-wrap:wrap-reverse (opposite to wrap)

3. justify-content: (horizontal alignment)

※flex-start (horizontally left aligned)

※ justify-content:flex-end; (horizontally right aligned)

※ justify-content:center; (horizontally centered)

※justify-content:space-between; (align both ends)

※justify-content:space-around; (align the spacing at both ends)

4. align-items: (vertical alignment)

※ align-items:stretch; (default)

※align-items:flex-start; (top alignment, similar to the default)

※align-items:flex-end; (bottom alignment)

※ align-items:center; (center alignment)

=※align-items:baseline; (baseline alignment)

If the flex-item's inline axis is the same as the cross (vertical) axis, this value is equivalent to 'flex-start'. Otherwise, the value will be used for baseline alignment.

Flex container properties

/*1. Direction*/
        /*Default direction (row positive direction)*/
        /* flex-direction: row; */
        /*row reverse direction*/
        /* flex-direction: row-reverse; */
        /*columnz positive direction*/
        /*flex-direction: column;*/
        /*columnz reverse direction*/
        /*flex-direction: column-reverse;*/

        /*2. Line break*/
        /*flex-wrap: wrap;*/
        /*flex-wrap: wrap-reverse;*/

        /*3.direction+wrep combination*/
        /*flex-flow: row wrap-reverse;*/

        /*4. Main axis alignment*/
        /*Starting point left aligned*/
        /*justify-content: flex-start;*/
        /*Starting point right aligned*/
        /*justify-content: flex-end;*/
        /*Starting point is aligned to the center*/
        /*justify-content: center;*/
        /*Intervals spread out to the left and right*/
        /*justify-content: space-between;*/
        /*Equal inner margins*/
        /*justify-content: space-around;*/
        /*Equal intervals*/
        /*justify-content: space-evenly;*/
        
        /*5. Cross-axis alignment: when flex-direction: row; modifies the y-axis, when flex-direction: column; modifies the x-axis*/
        /*Default cross axis alignment*/
        /*align-items: stretch;*/
        /*Default cross axis is centered*/
        /*align-items: center;*/
        /*Default cross axis alignment*/
        /*align-items: flex-start;*/
        /*Default cross axis alignment*/
        /*align-items: flex-end;*/
        /*Default cross axis content alignment*/
        /*align-items: baseline;*/

        /*6. Multi-line cross-axis alignment*/
        /*align-content: stretch;*/
        /*Center alignment of multiple lines of cross axis*/
        /*align-content: center;*/
        /*Multiple lines aligned on the cross axis*/
        /*align-content: flex-start;*/
        /*Multiple lines cross axis alignment*/
        /*align-content: flex-end;*/
        /*Multiple lines have equal inner margins*/
        /*align-content: space-around;*/
        /*Multiple lines of cross-axis are scattered left and right*/
        /*align-content: space-between;*/
        /*Multiple lines have equal spacing between cross axes*/
        /*align-content: space-evenly;*/

Flex item properties

/*1. Control the order of items*/
        /*order: 2;*/
        /*2. Expand the space in proportion. The larger the number, the larger the space. The value of 0 does not expand*/
        /*flex-grow: 2;*/
        /*3. Reduce the space proportionally. The larger the number, the smaller the space. 0 value is not compressed*/
        /*flex-shrink: 2;*/
        /*4. Need to be used with flex-direction, row=width column=height, and the priority is higher than width height, auto value gives way to priority*/
        /*flex-basis: 600px;*/
        /*5.flex=grow+shrink+basis*/
        /*grow = 1 && shrink = 1 && basis = auto*/
        /*flex: auto;*/
        /*grow = 0 && shrink = 1 && basis = auto*/
        /*flex: initial;*/
         /*grow = 0 && shrink = 0 && basis = auto*/
        /*flex: none;*/
        /*6.align-self overrides the container's align-items*/
        /*align-self: flex-start;*/

This concludes this article about several methods of using css3 flex to achieve horizontal and vertical centering of div content. For more relevant css3 div horizontal and vertical centering content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  Detailed explanation of common methods of JavaScript String

>>:  Introduction to the use of anchors (named anchors) in HTML web pages

Recommend

Analysis of the Neglected DOCTYPE Description

doctype is one of them: <!DOCTYPE HTML PUBLIC &...

Start nginxssl configuration based on docker

Prerequisites A cloud server (centOS of Alibaba C...

Upgrade MySQL 5.1 to 5.5.36 in CentOS

This article records the process of upgrading MyS...

HTML table tag tutorial (11): horizontal alignment attribute ALIGN

In the horizontal direction, you can set the alig...

JavaScript implements asynchronous acquisition of form data

This article example shares the specific code for...

Implementation of Nginx domain name forwarding https access

A word in advance: Suddenly I received a task to ...

MYSQL database GTID realizes master-slave replication (super convenient)

1. Add Maria source vi /etc/yum.repos.d/MariaDB.r...

After docker run, the status is always Exited

add -it docker run -it -name test -d nginx:latest...

Example analysis of mysql non-primary key self-increment usage

This article uses an example to illustrate the us...

A pitfall and solution of using fileReader

Table of contents A pitfall about fileReader File...

Practice of dynamically creating dialog according to file name in vue+el-element

Table of contents background accomplish 1. Encaps...

JavaScript canvas implements moving the ball following the mouse

This article example shares the specific code of ...