The question of how to vertically center an element in css is already a commonplace question. Whether it is a newbie or a veteran, this question is often asked during the interview process. I was watching a flex video tutorial two days ago, and it mentioned the centering of elements, so today I will take a look at some common methods. Please criticize and correct any shortcomings (all codes are typed by myself and available)
1. Horizontal centering (margin: 0 auto;)
About This should be familiar to everyone, whether it is in a training class or self-study. This should be the first method taught by the teacher (horizontally), but it has a premise that the wrapped elements cannot have floating attributes. Otherwise, this property will be invalid. The specific code is as follows:
2. Horizontal centering (text-align: center;)
If this attribute does not float, we can convert it to inline/inline-block, and then add the text-align:center; attribute to its parent element to center it
3. Horizontal and vertical centering (1) The child element is absolutely positioned relative to the parent element, and the margin value is subtracted from itself Half of the width and height
This method has certain limitations, because it must know the width and height of the child element itself
4. Horizontal and vertical centering (2) The child element is absolutely positioned relative to the parent element, and the margin value is auto
This method is not affected by the width of the element High limit, easier to use (recommended)
5. Horizontal and vertical centering (3) diplay: table-cell
This method is to convert the element into a table style, and then use the table style to center (recommended)
6. Horizontal and vertical centering (4) Absolute positioning and transfrom
This method is the most pretentious and uses css3 deformation. When the interviewer sees something like this in your code, your coolness will instantly rise. Of course, you know that cool stuff has compatibility issues
7. Horizontal and vertical centering (5) The flex attribute in css3
This attribute is very useful, but it is absolutely not compatible. If you have sexual problems, users should pay attention
The above is the detailed content of Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods. For more information, please follow other related articles on the PHP Chinese website!