12

可能重复:
在页面上垂直和水平居中 <div> 的最佳方法?

我的网站登陆页面具有Container100% 高度和宽度的 DIV。我能够将InnerContainerdiv 水平居中对齐,但我无法将其垂直居中。我更改了几个属性,大部分结果保持不变。

我有相同的http://jsfiddle.net/cwkzq/12/示例,但我不确定我在哪里做错了。我会很感激这方面的帮助。

CSS 代码

html, body,form { height: 100%;  }
body { margin: 0;  padding: 0; border: 1; background-color:Aqua; }
.Container { width: 100%;height: 100%; padding: 0; font-size: 12px; border:1px solid green;
 vertical-align: middle;     }
.InnerContainer
{  vertical-align: middle; width: 400px;height: 350px; border-left:1px solid;
    border-right:1px solid; border-color:#f5f5f5;margin: 0 auto;  padding: 0;
    font-size: 12px;  background-color:Red;
}

代码

<!--  Container    -->
<div class="Container">
<div class="InnerContainer">
    <!--  TopMenu Bar    -->
    <div class="colorBar">

    </div>
    <!--  TopMenu Bar   -->
    <!--  Middle Part    -->
    <div class="MiddleWrapper">
        <!--  Left Title    -->
            <div class="Title">

            </div>
        <!--   Left Title   -->
        <!--   Large Image   -->
            <div class="ImageLeftWrapper">

            </div>
        <!--   Large Image   -->
        <!--  Logo Wrapper    -->
            <div class="LogoWrapper">

            </div>
        <!--   Logo Wrapper   -->
        <!--   Page Text Area  -->
            <div class="PageText">

            </div>
        <!--   Page Text Area   -->
        <!--  Search Bar    -->
            <div class="SearchBar">

            </div>
        <!--   Search Bar    -->
        <!--   Banner Images -->
            <div class="BannerImageWrapper">

            </div>
        <!--  Banner Images   -->
    </div>
    <!--  Middle Part    -->
    <!--   Menu Wrapper    -->
    <div class="MenuWrapper">

    </div>
    <!--   Menu Wrapper    -->
    <!--   Footer Section  -->
    <div class="FooterWrapper">

    </div>
    <!--  Footer Section  -->
</div>
</div>
<!--  Container   -->

大多数网络上的示例都有固定的宽度和高度容器 DIV,而在我的情况下,我的容器 div 具有 100% 的宽度和高度

4

3 回答 3

23

答案移至原问题

我做到了:(dabblet.com 上的演示

这个演示的主要技巧是在元素的正常流动中从上到下,所以margin-top: auto设置为零。然而,对于一个绝对定位的元素,其自由空间分布相同,并且类似地可以在指定的topand处垂直居中bottom(在 IE7 中不起作用)。

这个技巧适用于任何大小的div.

HTML:

<div></div>

CSS:

div {
    width: 100px;
    height: 100px;
    background-color: red;

    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    
    margin: auto;
}
于 2012-06-07T05:33:28.883 回答
6

如果您知道要对齐的块的确切大小,这是最简单的方法:jsfiddle

将此样式添加到您的 .InnerContainer

.InnerContainer{
  width: 400px;
  height: 350px;
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: #f5f5f5;
  margin: 0 auto;
  padding: 0;
  font-size: 12px;
  background-color: red;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -200px;
  margin-top: -175px;
}
于 2012-06-07T06:00:32.490 回答
1

嗨,现在您可以像这样使用此解决方案的多种方法

CSS

.wraptocenter {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: ...;
    height: ...;
}
.wraptocenter * {
    vertical-align: middle;
}

.wraptocenter {
    display: block;
    background:green;
    height:500px;
}
.wraptocenter span {
    display: inline-block;
    height: 100%;
    width: 1px;
}
.child{
background:pink;
    min-height:100px;
    width:100px;
    display:inline-block;

}

HTML

<div class="wraptocenter">
    <span></span>
    <div class="child"> Hello I am child and ver and horz....</div>
</div>

现场演示http://jsfiddle.net/w9dxv/1/

更多信息http://www.brunildo.org/test/img_center.html


如果你想 居中水平和垂直对齐

CSS

.chv{
width:200px;
    height:100px;
    position:absolute;
    left:50%;
    top:50%;
margin-left:-100px;
    margin-top:-50px;
    border:solid 1px red;
}

HTML

<div class="chv">
    Center horizontal and vertical align
</div>

现场演示http://jsfiddle.net/HkEVZ/1/


如果你想水平和垂直居中单行文本

CSS

.alldiv{
width:400px;
    height:200px;
    text-align:center;
    line-height:200px;
    border:solid 1px red;
}

HTML

<div class="alldiv">
Center horizontally and vertically a single line of text
</div> 

现场演示http://jsfiddle.net/SVEtH/1/


如果你想要中心水平和垂直对齐用于像这样的表格属性..

CSS

.parent{
display:table;
    height:300px;
    text-align:center;
    border:solid 1px red;
    width:100%;
}
.child{
display:table-cell;
    vertical-align:middle;
    border:solid 1px green;
}

HTML

<div class="parent">
<div class="child">
Center horizontal and vertical align
</div>
</div>

现场演示http://jsfiddle.net/J3Zc6/2/

于 2012-06-07T05:53:42.610 回答