1. Flex layout .father { display: flex; justify-content: center; align-items: center; } This method is not compatible 2. Position + transform .son { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } IE9 and below do not support the transform attribute 3. table + table-cell .father { display: table; } .son { display: table-cell; vertical-align: middle; text-align: center; } 4. :before + display:inline-block .father { text-align: center; } .father::before { content: ''; display: inline-block; height: 100%; vertical-align: middle; } .son { display: inline-block; } This concludes this article about several ways to use CSS3 variable height and width vertical and horizontal centering. For more information about CSS3 variable height and width vertical and horizontal centering, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: Solutions to browser interpretation differences in size and width and height in CSS
>>: Complete guide to using iframe without borders or borders (practical experience summary)
Table of contents 1. Conditional access attribute...
If a website is widescreen, you drag the browser ...
Possible reasons: The main reason why Seata does ...
This article mainly introduces the wonderful use ...
1. Install Python 3 1. Install dependency package...
My first server program I'm currently learnin...
Networks usage tutorial Official website docker-c...
Vue front and back end ports are inconsistent In ...
Start the mysql container in docekr Use command: ...
Preface This article mainly introduces the releva...
Because the server's database hard disk space...
Preface This article mainly introduces 4 methods ...
Block element HTML tag classification details * a...
Table of contents 1. Introduction 2. Usage 3. Dev...
Recently, I have implemented such an effect: clic...