Using flex layout, if it is a nine-square grid, it can be divided equally, as shown in the figure If we only need eight pieces, as shown in the figure 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; } 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
One line command docker run -d \ -v /share:/home/...
Table of contents What is a trigger Create a trig...
1. Log in to MySQL and use SHOW VARIABLES LIKE ...
Today I saw a little trick for HTML text escaping ...
Typically, we use the following SQL statement to ...
10.4.1 The difference between Frameset and Frame ...
Table of contents background Problem Analysis 1. ...
Written in front When we operate the database in ...
Jellyka BeesAntique Handwriting [ank]* Jellyka Cut...
MySQL multi-table query (Cartesian product princi...
There are three ways to interconnect and communic...
Table of contents Ref and Reactive Ref Reactive T...
How to change the MySQL database directory locati...
Add the jvm.options file to the elasticsearch con...
Detailed explanation of HTML (select option) in ja...