让绝对定位的元素 居中(假设这个元素的宽为100px 高位40px)
position:absolute;
left:50%;
top:50%;
margin-left:-50px(元素宽的一半);
margin-top:-20px(元素高的一半);