绝对中心在IE中不起作用

时间:2014-06-07 09:03:41

标签: html css css3

我有一个以父div为中心的div,它可以在所有浏览器上工作,但不是在ie,你可以帮我解决这个问题。

JSFIDDLE

enter image description here

span.qbg3 {
    display: block;
    text-align: center;
    background: url(http://powerblanket.com/may2014/wp-content/uploads/2014/05/qbg3.png) no-repeat center center;
    background-size:cover;
    padding: 50px 20px;
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    position: relative;
    margin-top: -20px;
    min-height: 350px;
}
span.inqbg3 {
    max-height: 100px;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 40px;
    position: absolute;
    margin: auto;
    top: 0px;
    right: 0;
    left: 0;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    max-width: 700px;
    padding: 35px 0;
}
span.inqbg3 a {
    color: #fff;
}

3 个答案:

答案 0 :(得分:1)

你需要改变你的CSS

需要删除right: 0bottom: 0

并将left: 0top: 0更改为left: 50%top: 50%,将一半减去高度和宽度边距,将其置于中心位置。

CSS

span.inqbg3 {
    max-height: 100px;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 40px;
position: absolute;
margin:  -85px 0 0 -267px;
top: 50%;
/* right: 0; */
left: 50%;
/* bottom: 0px; */
    background: rgba(0,0,0,0.5);
    max-width: 700px;
    padding: 35px;
}

Here is the demo

答案 1 :(得分:1)

Demo

您需要将width的{​​{1}}设置为

span.inqbg3

CSS

width: 100% /* Set your own height: percents, ems, whatever! */

enter image description here

答案 2 :(得分:0)

删除位置:绝对;来自span.inqbg3。