如何水平和垂直居中元素

跳到主内容

我试图将我的选项卡内容垂直居中,但是当我添加 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;
}


first
second

运行代码片段隐藏结果


 

解答http://www.stackoverflow.ink/posts/ru-he-shui-ping-he-chui-zhi-ju-zhong-yuan-su/?f=2

你可能感兴趣的:(css,css3,html)