我正在为运行 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;
}
这在我的机器上运行良好(使用最新的浏览器),但在扫描仪上一切都与顶部对齐。
任何人都可以提出任何可能对我有帮助的建议吗?