Absolute Positioning and Stretching
如同上述方法一样,首先将父母和子女分别定位为相对和绝对的。 情况不同。
在下面的法典中,我再次使用这种方法将儿童横向和纵向集中起来,尽管你只能使用垂直集中的方法。
<><><><>>><>>>>><>>>>>>
<div id="parent">
<div id="child">Content here</div>
</div>
CSS
#parent {position: relative;}
#child {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 50%;
height: 30%;
margin: auto;
}
The idea with this method is to try to get the child element to stretch to all four edges by setting the top, bottom, right, and left vales to 0. Because our child element is smaller than our parent elements it can’t reach all four edges.
但是,在所有四边设置汽车作为差值,会造成对等,并显示我们的子女在母体中心四分五裂。
不幸的是,上述活动在互联网探索者7和以下领域赢得了无所作为的工作,而且与以前的方法一样,儿童部分的内容可能会变得太大,从而导致隐藏。