我正在为运行IE5的扫描仪开发项目(是的,我知道!),他们要求链接应为具有高度的块元素。在此块内,他们希望其内容在垂直和水平方向上都与中心对齐。

我有这个HTML(一个):

<a class="block cancel vertical-align text-center" href="#" id="btn-cancel">
    <h4>Cancel</h4>
</a>


SCSS是:

.block {
    display: inline-block;
    *zoom: 1;
    *display: inline;

    height: 100%;
    width: 100%;
    background-color: #3C60EF;

    .block-content {
        padding: 4px;

        > h1, > h2, > h3, > h4, > h5 {
            margin-top: 0;
        }

        @media screen and (min-width: 992px) {
            padding: 10px;
        }
    }
}

.block.vertical-align {
    display: table-cell;
    vertical-align: middle;

    h3, h4, h5, h6, p, .block-content {
        padding: 0 10px !important;
    }

    form {
        .form-group {
            margin: 0;
        }
    }
}

a.block {
    background-position: center center;
    background-repeat: no-repeat;
}

.text-center {
    text-align: center;
}


这在我的机器上(使用最新的浏览器)正常工作,但是在扫描仪上,所有内容都与顶部对齐。

谁能提出任何可能对我有帮助的建议?

最佳答案

<style>
.text-center {
    text-align: center;
}

.fullFrame{
    width: 100%;
    height: 100%;
}
</style>

<table class="fullFrame">
    <tr>
        <td class="text-center">

<a class="block cancel vertical-align text-center" href="#" id="btn-cancel">
<h4>Cancel</h4>
</a>

        </td>
    </tr>
</table>


这将使取消链接位于页面的垂直和水平中心。我只能查看低至IE6的文件,它似乎可以正常工作。不确定IE5,但我不知道您为什么要尝试支持IE5,因为它已经过时了。

关于css - IE5垂直对齐,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27004447/

10-13 01:53