1. display 方法(最常用的方法)
display: flex;
justify-content: center;
align-items: center;
2. 定位
1)固定宽高(100px)
.parent{
position: relative;
}
.child{
position: absolute;
top: 50%;
left: 50%;
margin-left: -50px;
margin-top: -50px;
}
2) 有宽高,但不考虑宽高
.parent{
position: relative;
}
.child{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
height: 50px;
width: 80px;
}
3) 木有具体宽高
.parent{
position: relative;
}
.child{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
3. 控制文本(table-cell)--- margin + vertical-align
.parent{
display:table-cell;
vertical-align: middle;
}
.child{
display: table;
margin: 0 auto;
}
4. 控制文本(table-cell)--- text-align + vertical-align
.parent{
display: table-cell;
text-align: center;
vertical-align: middle;
}
.child{
width: 80px;
display: inline-block;
}
5. text-align + line-height实现单行文本水平垂直居中
.test{
text-align: center;
line-height: 100px;
}
相关文章
- 02-16如何让一个div垂直水平居中,分别用css和css3的多种方法实现
- 02-16元素垂直居中的几种方法
- 02-16不定宽高盒子的垂直水平居中的方法
- 02-16css中垂直和水平居中问题的解决
- 02-16css3的box方法实现水平垂直居中
- 02-164种CSS实现div水平垂直居中的方法
- 02-16关于div水平垂直居中的几种方法
- 02-16POI导出EXCEL文档,表格水平垂直居中、表头添加颜色等常用属性方法
- 02-16CSS实现水平垂直居中的8种方式
- 02-16CSS实现水平垂直居中对齐的八种方法