实现一个元素在容器中水平垂直居中一直是前端开发过程中需要面对的一个难题,这里将总结一些常见的方法。
全面总结使用CSS实现水平垂直居中效果的方法
实现一个元素在容器中水平垂直居中一直是前端开发过程中需要面对的一个难题,这里将总结一些常见的方法。
方法一:使用flex布局实现
flex布局可以很方便的实现一个元素在容器中居中,下面是实现水平垂直居中效果的代码:
.container {
display: flex;
justify-content: center;
align-items: center;
}
<div class="container">
<div class="box">This is a box.</div>
</div>
方法二:使用绝对定位实现
使用绝对定位需要知道容器的宽高,下面是实现水平垂直居中效果的代码:
.container {
position: relative;
}
.box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
<div class="container">
<div class="box">This is a box.</div>
</div>
方法三:使用表格布局实现
表格布局虽然不常用,但可以很方便的实现一个元素在容器中居中,下面是实现水平垂直居中效果的代码:
.container {
display: table;
}
.box {
display: table-cell;
vertical-align: middle;
text-align: center;
}
<div class="container">
<div class="box">This is a box.</div>
</div>
方法四:使用line-height实现
当元素是一个行内元素时,我们可以使用line-height实现元素在容器中垂直居中,下面是实现垂直居中效果的代码:
.container {
height: 300px;
line-height: 300px;
text-align: center;
}
.box {
display: inline-block;
vertical-align: middle;
}
<div class="container">
<div class="box">This is a box.</div>
</div>
方法五:使用grid布局实现
grid布局可以很方便的实现一个元素在容器中居中,下面是实现水平垂直居中效果的代码:
.container {
display: grid;
place-items: center;
}
<div class="container">
<div class="box">This is a box.</div>
</div>
沃梦达教程
本文标题为:全面总结使用CSS实现水平垂直居中效果的方法
基础教程推荐
猜你喜欢
- HTML/HTML5 基础知识 | 面试题专用 2023-10-28
- Jquery中$.ajax()方法参数详解 2022-10-17
- Vue多布局模式实现方法详细讲解 2023-07-10
- Vue3父传子props(组件之间通信) 2023-10-08
- CSS属性探秘系列(七):z-index 2023-12-21
- Vue中的前后台交互 2023-10-08
- 关于ajax对象一些常用属性、事件和方法大小写比较常见的问题总结 2022-10-17
- 从富文本编辑器获取html内容组装json,特殊字符引起报错解决办法。 2023-10-29
- 模仿combox(select)控件,不用为美化select烦恼了。 2022-11-04
- 使用display:none时隐藏DOM元素无法获取实际宽高的解决方法 2022-11-20