我试图垂直居中我的标签内容,但当我添加CSS样式display:inline-flex时,水平文本对齐消失了。
我怎么能使文本对齐x和y为我的每个制表?
* { box-sizing: border-box; }
#leftFrame {
background-color: green;
position: absolute;
left: 0;
right: 60%;
top: 0;
bottom: 0;
}
#leftFrame #tabs {
background-color: red;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 25%;
}
#leftFrame #tabs div {
border: 2px solid black;
position: static;
float: left;
width: 50%;
height: 100%;
text-align: center;
display: inline-flex;
align-items: center;
}
<div id=leftFrame>
<div id=tabs>
<div>first</div>
<div>second</div>
</div>
</div>
将一个盒子垂直和水平居中的最好方法是使用两个容器:
外面的容器:
应有显示:表;
内容器:
应该有display: table-cell;
应该有垂直对齐:中间;
应该有text-align: center;
内容框:
应该有显示:inline-block;
应该调整水平文本对齐,除非你想让文本居中
演示:
body {
margin : 0;
}
.outer-container {
display: table;
width: 80%;
height: 120px;
background: #ccc;
}
.inner-container {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.centered-content {
display: inline-block;
text-align: left;
background: #fff;
padding : 20px;
border : 1px solid #000;
}
<div class="outer-container">
<div class="inner-container">
<div class="centered-content">
Center this!
</div>
</div>
</div>
看看这小提琴!
居中的:在书页中间居中的:
要将内容置于页面中央,请将以下内容添加到外部容器中:
位置:绝对;
宽度:100%;
高度:100%;
下面是一个演示:
body {
margin : 0;
}
.outer-container {
position : absolute;
display: table;
width: 100%;
height: 100%;
background: #ccc;
}
.inner-container {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.centered-content {
display: inline-block;
text-align: left;
background: #fff;
padding : 20px;
border : 1px solid #000;
}
<div class="outer-container">
<div class="inner-container">
<div class="centered-content">
Center this!
</div>
</div>
</div>
看看这小提琴!
要在页面中居中Div,请检查fiddle链接
# vh {
border - radius: 15 px;
Box-shadow: 0 0 8px rgba(0,0,0,0.4);
填充:25 px;
宽度:200 px;
身高:200 px;
背景:白色;
text-align:中心;
保证金:汽车;
位置:绝对的;
上图:0;
左:0;
底部:0;
右:0;
}
<div id="vh"> div要垂直对齐</div>
更新
另一种选择是使用flex box检查小提琴链接
.vh {
background - color: # ddd;
身高:200 px;
对齐项目:中心;
显示:flex;
}
.vh > div {
宽度:100%;
text-align:中心;
vertical-align:中间;
}
< div class = " vh”>
<div> div要垂直对齐
< / div >