0

样式是:

.innerdiv{
display: inline-block;
vertical-align: middle;
width: 300px;
}
.outerdiv{
text-align: center;
background: #c0c0c0;
}
.outerdiv .before,.outerdiv:before {
content: '';
display: inline-block;
/**display: inline;*/
height: 100%;
vertical-align: middle;
margin-right: -0.25em;
}

HTML:

<div style="height:500px" class="outerdiv">

 <div class="innerdiv">
   <span class="" style="font-size:26px">Hello </span>
   <br/>
   <img style="width:150px" src="http://mrsdalesworkspace.pbworks.com/f/1302032618/desert(1).jpg"/>
 </div>

我想将内部 div 相对于外部 div 水平和垂直居中,并且上面的代码在除 IE7 之外的任何地方都可以正常工作。

我认为由于“之前”伪类的存在,它在 IE7 中不起作用。

我尝试使用修复它

样式是:

.outerdiv{
text-align: center;
background: #c0c0c0;
*zoom: expression( 
this.runtimeStyle.zoom="1",
this.appendChild( document.createElement("small") ).className="after",
this.insertBefore( document.createElement("small"), this.firstChild ).className="before"
);

}

.outerdiv .before,.outerdiv:before {
content: '';
display: inline-block;
/**display: inline;*/
height: 100%;
vertical-align: middle;
margin-right: -0.25em;

}

我也无法使用这个来做到这一点。

我什至尝试使用插件

<!--[if lt IE 8]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
<![endif]-->

并且

<script type="text/javascript" src="http://jquery.lukelutman.com/plugins/pseudo/jquery.pseudo.js"></script>

它仍然没有工作。

我知道使用position:absolute和设置顶部和左侧边距和位置我们可以实现它。我想使用伪类来实现它。

4

3 回答 3

2

这应该在每个浏览器中都有效:

.outerdiv {
     position:relative;
}

.outerdiv .innerdiv {
     position:absolute;
     top:50%;
     left:50%;
     width:200px;
     height:200px;
     margin-top:-100px; // height / 2
     margin-left:-100px; // width /2 
}
于 2013-08-01T10:15:59.437 回答
1

::beforeIE7根本看不懂::after

这意味着它也不理解.outerdiv .before,.outerdiv:before组合选择器。你应该把它们分开。

于 2013-08-01T14:31:03.003 回答
0

You can try this class :

.center {
     position: absolute; /* do not change */
     top: 50%; /* do not change */
     left: 50%; /* do not change */
     width: 80%; /* 80% of the parent's width. Of course, you can change this value. */
     height: 80%; /* 80% of the parent's width. Of course, you can change this value. */
     margin-top: -40%;  /* current height / 2 */
     margin-left: -40%; /* current width / 2 */
}

Example on codepen.io

于 2013-08-01T10:33:43.700 回答