Implementation idea of ​​left alignment of the last row of flex box layout

Implementation idea of ​​left alignment of the last row of flex box layout

Using flex layout, if it is a nine-square grid, it can be divided equally, as shown in the figure

insert image description here

If we only need eight pieces, as shown in the figure

insert image description here

But if we want the last block to be left-aligned and arranged in sequence, we need to add a pseudo-element after to the parent of the element, as shown in the figure

<div class="box">
	<ul>
		<li></li>
		<li></li>
		<li></li>
		<li></li>
		<li></li>
		<li></li>
		<li></li>
		<li></li>
	</ul>
</div>
ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul:after{
	content: "";
	width: 32%;
}
ul li{
	width: 32%;
	height: 10vh;
	margin-bottom: 1vh;
	background: #2fbaff;
} 

insert image description here

This concludes this article about how to implement left-alignment of the last line in flex box layout. For more flex layout content, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  SQL implementation LeetCode (176. Second highest salary)

>>:  Vue implements simple calculator function

Recommend

Detailed explanation of mysql trigger example

Table of contents What is a trigger Create a trig...

How to change the character set encoding to UTF8 in MySQL 5.5/5.6 under Linux

1. Log in to MySQL and use SHOW VARIABLES LIKE &#...

HTML text escape tips

Today I saw a little trick for HTML text escaping ...

Several ways to update batches in MySQL

Typically, we use the following SQL statement to ...

The difference between html Frame, Iframe and Frameset

10.4.1 The difference between Frameset and Frame ...

MySQL extracts Json internal fields and dumps them as numbers

Table of contents background Problem Analysis 1. ...

Optimizing the slow query of MySQL aggregate statistics data

Written in front When we operate the database in ...

Recommended 20 best free English handwriting fonts

Jellyka BeesAntique Handwriting [ank]* Jellyka Cut...

Detailed explanation of three ways to connect Docker containers to each other

There are three ways to interconnect and communic...

Detailed analysis of the difference between Ref and Reactive in Vue3.0

Table of contents Ref and Reactive Ref Reactive T...

How to change the MySQL database directory location under Linux (CentOS) system

How to change the MySQL database directory locati...

Solution to ES memory overflow when starting docker

Add the jvm.options file to the elasticsearch con...

Basic understanding and use of HTML select option

Detailed explanation of HTML (select option) in ja...