0

我目前在 IE 中显示 100% 高度的 div 时遇到一些问题,它在所有其他浏览器中都可以正常工作,只是 IE 给我带来了一些麻烦,我不知道如何解决它。
这是我的一些代码:
HTML:

<div id="content">

    <div id="box-01" class="slide" style="color: #F26964; background-color: #003218;">
        <div class="text-content">
TEXT GOES HERE
        </div>
    </div>


    <div id="box-02" class="slide" style="color: #F2F1EF; background-color: #70858E;">

            <div class="text-content">
TEXT GOES HERE
            </div>
    </div>


    <div id="box-03" class="slide" style="color: #F2F1EF; background-color: #003218">

            <div class="text-content">
TEXT GOES HERE
            </div>
    </div>

</div>

CSS:

html, body {
    margin:0;
    padding:0;
    height:100%;
    border:none
}

#content {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0px;
    left: 0px;
}

.slide {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: table;
    vertical-align: middle;

    background: no-repeat 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.text-content {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    text-transform: uppercase;  
}

所以我有一组相对定位的 div,每个都适合浏览器窗口大小,就像我说的那样,这在除 IE 之外的每个浏览器中都可以正常工作,特别是 100% 高度样式属性无法识别。
在做了一些研究之后,我发现这可能与表格中的文本有关(这是必要的,因为我想将文本水平和垂直居中)但我不知道这个问题如何得到解决,任何建议将不胜感激!

4

1 回答 1

0

这里讨论了许多策略:http: //blog.themeforest.net/tutorials/vertical-centering-with-css/

这似乎适用于 IE FF 和 Chrome: http ://codepen.io/anon/pen/asqpL

于 2013-02-09T19:49:00.903 回答