一. 水平居中
- margin: 0 auto
<div class="box"></div>
<style>
.box {
width: 200px;
height: 100px;
margin: 0 auto;
background-color: pink;
}
</style>
- 当子元素
display: inline-block
时,父元素text-align: center
,可控制子元素水平居中。
<div class="wrap">
<div class="box"></div>
</div>
<style>
.wrap {
text-align: center;
}
.box {
display: inline-block;
width: 100px;
height: 100px;
background-color: pink;
}
</style>
text-align: center
在块级父容器中让行内元素居中,inline
/inline-block
/inline-table
/inline
/flex
等类型的元素实现居中。
二. 垂直居中
单行,对于单行行内或文本元素,只需为它们添加等值的
padding-top
和padding-bottom
。在已知文本不会换行的时候,可以 line-height = height 来实现垂直居中。
-
多行文本垂直居中
3.1 方法一
3.2 方法二:使用 flex
.box {
display: flex;
align-items: center;
width: 100px;
height: 100px;
background-color: #ccc;
}
- 当父元素没有固定高度时,可以采用
幽灵元素(ghost element)
的非常规解决方式:在垂直居中的元素上添加伪元素,设置伪元素的高等于父元素的高,然后为子元素添加vertical-align: middle;
。
// 待定
三. 水平垂直居中
绝对定位元素的水平垂直居中
- 宽高固定,绝对定位,
top: 50%; left: 50%;
左上 margin 为自身宽高一半
<div class="box"></div>
<style>
.box {
width: 200px;
height: 100px;
position: absolue;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -100px;
background-color: pink;
}
</style>
- 同上,使用 css3 里的 transform 代替 margin。可以不设宽高。
<div class="box"></div>
<style>
.box {
position: absolue;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: pink;
}
</style>
transform
里的translate
偏移的百分比值是相对于自身大小的translate()
方法,根据左(X轴)
和顶部(Y轴)
位置给定的参数,从当前元素位置移动,如:translate
值(50px,100px)
是从左边元素移动 50 个像素,并从顶部移动 100 像素。
margin:auto
.box {
position: absolute;
background: red;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 200px;
height: 100px;
}
利用 flex 布局的水平垂直居中
需要注意,flex 垂直居中相对于父元素高度。
<div class="wrap">
<div class="box"></div>
</div>
<style>
.wrap {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.box {
width: 200px;
height: 100px;
background-color: red;
}
</style>
利用 grid 布局的水平垂直居中
方法一:父元素设置 display: grid; justify-items: center; align-items: center;
方法二:父元素设置 display: grid;
,子元素设置 justify-self: center; align-self: center;
.wrap {
display: grid;
height: 100vh;
background-color: #ee3;
/* justify-items: center;
align-items: center; */
}
.box {
background-color: #c9c;
width: 100px;
justify-self: center;
align-self: center;
}