简体   繁体   English

div内的垂直对齐div不起作用

[英]vertically aligning div inside div not working

How come the div's inside #inner are not vertically aligning? div的内部#inner为何不垂直对齐? Do note that I am using IE 8 and CSS, not CSS3 if that makes a difference. 请注意,如果使用的话,我使用的是IE 8和CSS,而不是CSS3。 This is my html. 这是我的html。

<div class="Content">

    <div id="home">
        <div id="inner">
                <div id="stuff">HeadingOne</div>
                <div>HeadingTwo</div>
                <div>HeadingThree</div>
        </div>
    </div>

</div>

This is my CSS 这是我的CSS

    #inner div {
         display: inline;
    }

    #home #inner {
        margin: 0px auto;
        vertical-align: middle;
    }

    #home {
        display: table-cell;
        vertical-align: middle;
        text-align:center;
    }

As you can see, I tried making display: table-cell; 如您所见,我尝试进行显示:table-cell; and then doing vertical-align: middle but it didn't work. 然后进行垂直对齐:居中,但这没有用。 Any idea why? 知道为什么吗? And yes, I need the '#inner div' displays to be inline. 是的,我需要将“ #inner div”显示为内联。 I want the there div's inside #inner to be inline and in the center of Content. 我希望在#inner内部的div内联并位于Content的中心。

You are using bad the display property. 您使用的display属性不好。 Use this CSS: 使用此CSS:

#home {
    display: table;
    text-align:center;
}    
#home #inner {
    display:table-cell;
    height:50px;
    background-color:#ccc;
    vertical-align: middle;
}
#inner div {
    display: inline-block;
}

You can review this link with the example in IE8 http://jsfiddle.net/rd2Hc/18/embedded/result/ 您可以使用IE8 http://jsfiddle.net/rd2Hc/18/embedded/result/中的示例查看此链接。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM