new document <p> #a2{<br />position:absolute; /*:绝对定位元素不在普通内容流中渲染,因此margin:auto可以使内容在通过top: 0; left: 0; bottom: 0;right: 0;设置的边界内垂直居中。父元素一般为body或者声明为position:relative;的容器。无需知道被垂直居中元素的高和宽。*/<br />top:0;<br />right:0;<br />left:0;<br />bottom:0;<br />margin: auto;<br />width:290px;<br />height:121px;<br />border:1px solid red;<br /> }<br /> #a1{<br /> width:500px;<br /> height:500px;<br /> border:1px solid red;<br /> position:relative;<br /> } <p>