Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods

高洛峰
Release: 2017-03-20 16:19:52
Original
1680 people have browsed it

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:

  

Copy after login

Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods

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

  

Copy after login

Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods

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

 

Copy after login

Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods

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)

 

Copy after login

Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods

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)

 

Copy after login

Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods

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

 

Copy after login

Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods

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

 

Copy after login

Detailed explanation of CSS3 page layout browser compatibility and front-end performance optimization methods

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!