css 垂直对齐中心Div元素

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 垂直对齐中心Div元素相关的知识,希望对你有一定的参考价值。

<div class="center-contain">
    <div class="center-this"> Everything in this div will be centered in IE8 or greater</div>
</div>
 .center-contain{
    display:block;
    height: 300px;
    white-space: nowrap; /* prevents line-breaking */
    overflow: hidden; /* hides overflow */
}
.center-contain:after{
    content: '';
    display: inline-block;
    height: inherit;
    vertical-align: middle;
    width:0;
}
.center-contain > .center-this{
    display: inline-block;
    width:100%;
    white-space: normal; /* enables line-breaking */
}

以上是关于css 垂直对齐中心Div元素的主要内容,如果未能解决你的问题,请参考以下文章

CSS中的垂直对齐?

按矩形中心垂直对齐 SVG 内的矩形元素

css在一个div中水平+垂直对齐3个元素

HTML CSS中如何实现DIV中的图片水平垂直居中对齐

如何左对齐和垂直对齐标题中的图像并将文本水平保持在div的中心[重复]

如何在表格单元格的垂直中心对齐 CSS 箭头?