CSS layout flex implements div cross arrangement and bottom alignment method

高洛峰
Release: 2017-03-20 16:24:37
Original
2596 people have browsed it

When I was writing a page using wordpress recently, the designer came up with a web page layout pattern that I had never encountered before. Its rendering on a computer (resolution greater than 768px) is as follows:

CSS layout flex implements div cross arrangement and bottom alignment method

On mobile phones (resolution is less than or equal to 768px), it is required to be arranged like this:

CSS layout flex implements div cross arrangement and bottom alignment method

I thought of two methods

The first is to use bootstrap's row and col-md together with col-md-push and col-md-pull to achieve. The code is as follows:

1 nbsp;html> 2 3 4  5  6  7 p左右交叉布局--文字和图片交叉 8 9 10 26 

27

28

29

30 CSS layout flex implements div cross arrangement and bottom alignment method31

32 33

34

我是文字,我用到了padding来实现大致居中

35 36 37

38

39

40 CSS layout flex implements div cross arrangement and bottom alignment method41

42 43

44

我是文字,我用到了padding来实现大致居中

45 46 47

48

49

50 CSS layout flex implements div cross arrangement and bottom alignment method51

52 53

54

我是文字,我用到了padding来实现大致居中

55 56 57 58 59
Copy after login

Effect on computer:

CSS layout flex implements div cross arrangement and bottom alignment method

Effect on mobile phone:

CSS layout flex implements div cross arrangement and bottom alignment method

##Use bootstrap method You need to write multiple rows (I tried to use one row to achieve it, but failed). Another thing to note is that in the col-md layer, it is best not to add additional classes (styles) if you need to control the elements in the inner layer. (In the above example, it is pictures and text). For example, if you add padding, you can add a layer of p to write the style.

The second method uses flex-direction: row-reverse in flex layout to implement, the code is as follows:

1 nbsp;html> 2 3 4  5  6 p左右交叉布局--文字和图片交叉 7 8 9 41 

42

43

CSS layout flex implements div cross arrangement and bottom alignment method

44

我是文字,我使用了flex布局,我按column在主轴y轴上居中对齐。

45 46

47

CSS layout flex implements div cross arrangement and bottom alignment method

48

我是文字,我使用了flex布局,我按column在主轴y轴上居中对齐。

49 50

51

CSS layout flex implements div cross arrangement and bottom alignment method

52

我是文字,我使用了flex布局,我按column在主轴y轴上居中对齐。

53 54 55 56
Copy after login

The effect on the computer is as follows:

CSS layout flex implements div cross arrangement and bottom alignment method

The effect on the mobile phone is as follows:

CSS layout flex implements div cross arrangement and bottom alignment method

You can see that it is implemented with flex To be more flexible, all p's are arranged in rows. The key is to arrange the even rows in reverse:

.R:nth-child(even) { flex-direction: row-reverse; }, and then arrange it normally on the mobile phone.R { display: block; width: 100%; }.

I also found that using flex can easily achieve bottom alignment of two ps. The specific code is as follows:

.C { display: flex; align-items: flex-end; } .A { background: rgba(255, 0, 0, 0.1); } .A:nth-child(odd) { background: #1a88ea; color: white; font-size: 30px; padding: 10px 15px; }

创新

实验基地

Copy after login

In fact, let p in C take the main axis as x (when arranged by row, the main axis is x, when flex-diretion is not specified, the default is to arrange by row), the arrangement direction is row, and then let p all be in The y-axis (cross axis) is at the bottom

align-items: flex-end;

The effect is as follows:

CSS layout flex implements div cross arrangement and bottom alignment method

##Of course, other methods can also be used to achieve this. For example, let C be positioned relatively, let one p in C be positioned absolutely, and then set bottom to 0. The code is as follows, and the effect is the same as above.

创新

实验基地

Copy after login

But obviously, it is easier to implement with flex.

The above is the detailed content of CSS layout flex implements div cross arrangement and bottom alignment method. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!