我正在研究一个运行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;
}
这在我的机器上运行正常(使用最新的浏览器),但在扫描仪上,所有内容都与顶部对齐。
有人可以提出任何可能对我有用的建议吗?
答案 0 :(得分:0)
<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,但我不知道你为什么要尝试支持,因为它已经过时了。