Since its launch in 2009, flex has been supported by almost all browsers. As a simple, responsive layout solution, flex brings a lot of convenience to our layout development. However, during a development, I discovered that space-evenly faces compatibility issues when used. When testing on an iPhone 5s, I found that the child elements in the container with justify-content: space-evenly set were not evenly distributed along the main axis as expected, but were squeezed to the left. .container { display: flex; justify-content: space-evenly; } After checking Can I use space-evenly?, I found that the supported range of space-evenly is indeed relatively small. The definition of the space-evenly property on MDN is: Flex items are evenly distributed along the main axis within the specified alignment container. The spacing between adjacent flex items, the spacing from the start of the main axis to the first flex item, and the spacing from the end of the main axis to the last flex item are all exactly the same. To solve this problem, I thought of two ways: Using flex-grow flex-grow specifies how the remaining space of the container should be distributed to child elements. .container { display: flex; .child: { flex: 1; } } Using space-betweenAnother way is to use space-between which is similar to the space-evenly property. These two properties are very close, and space-between will rarely encounter compatibility issues. The difference is that under space-evenly, each child element has the same space on both sides, while under space-between, the first element of each line is aligned with the beginning of the line, and the last element of each line is aligned with the end of the line. Assuming there are five child elements in a container, the difference between these two attributes can be simply expressed as: // space-evenly |--son--son--son--son--son--| // space-between |Zi--Zi--Zi--Zi--Zi| That is to say, space-evenly will have two more gaps on both sides than space-between, while the first and last child elements of space-between are close to the edge of the container. To fill this gap, we can use two pseudo-elements to allow the container to have seven child elements when set to space-between, which means there are "six gaps": Code: .container { display: flex; justify-content: space-between; &:before, &:after { content: ''; display: block; } } This concludes this article on two methods to solve space-evenly compatibility issues. For more space-evenly compatibility content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. We hope that everyone will support 123WORDPRESS.COM in the future! |
<<: Summary of several implementations of returning to the top in HTML pages
>>: Building an image server with FastDFS under Linux
Since I found that the push image always timed ou...
1. Development environment vue 2. Computer system...
Table of contents 1. CentOS7+MySQL8.0, yum source...
Table of contents 1. Introduction to the Implemen...
I have several tomcats here. If I use them at the...
Download the official website Choose the version ...
Preface This article introduces a tutorial on how...
1. Enter the configuration file of the yum source...
Table of contents What happens if a piece of code...
Nowadays, cross-platform development technology i...
Based on Vue The core idea of this function is ...
Table of contents mousejoint mouse joint distance...
There are too many articles about xhtml+css websi...
Table of contents 1. Forgot the root password and...
Preface: The installation process will not be des...