Home > Article > Web Front-end > How to achieve vertical centering in css
In front-end development, vertical centering of elements is a very common requirement. For some beginners, this may be a very troublesome thing. However, there are actually many ways to achieve vertical centering using CSS. Let’s introduce some of the more practical methods below.
This is a relatively common method. It uses the CSS absolute positioning feature and sets the values of top and left, and sets the margin Set to auto to achieve vertical centering.
First, you need to position the element to be centered using absolute positioning:
.parent { position: relative; } .child { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* 其它样式 */ }
Then, set the margin to auto to achieve horizontal centering:
.child { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); margin: auto; /* 其它样式 */ }
This The advantage of this method is that it is relatively easy to understand and implement, and its compatibility is also very good. Note, however, that it only works if the height of the element you want to vertically center is known.
Flex layout is a newly added layout mode in CSS3. It makes vertical centering easy.
.parent { display: flex; justify-content: center; align-items: center; } .child { /* 其它样式 */ }
The advantage of this method is that it is very convenient and intuitive, and its compatibility is relatively good. However, it should be noted that when it needs to be compatible with older versions of browsers, some compatibility processing needs to be added.
Table layout is also an older CSS layout method, which can also be used to achieve vertical centering.
.parent { display: table; height: 100%; } .child { display: table-cell; vertical-align: middle; /* 其它样式 */ }
The advantage of this method is that it is also very compatible and easy to implement. However, it should be noted that it is not suitable for all scenarios. If high adaptability and flexibility are required, there may be some problems.
There is also a relatively simple method, which is to use Line-height to achieve vertical centering.
.parent { height: 300px; /* 定义容器高度 */ line-height: 300px; /* 容器高度与line-height相同,使文本垂直居中 */ text-align: center; /* 水平居中 */ } .child { display: inline-block; /* 行内块级元素 */ vertical-align: middle; /* 垂直居中 */ /* 其它样式 */ }
The advantage of this method is that it is very simple and has good compatibility. However, it should be noted that it only applies to inline elements or inline block elements, and only applies to vertically centered text scenarios.
Summary
The above introduces some common CSS methods to achieve vertical centering. Different methods are suitable for different scenarios and need to be selected according to actual needs. Also note that sometimes a combination of methods may be needed to achieve vertical centering. I hope this article can help you achieve vertical centering more easily.
The above is the detailed content of How to achieve vertical centering in css. For more information, please follow other related articles on the PHP Chinese website!