最主要的CSS样式

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
.login{
    width:631px;
    height:314px;
    margin-top:-157px;
    margin-left:-316px;
    position: absolute;
    top:50%;
    left:50%;
    background:url(images/mod.gif);
}

使用 **绝对定位 ** 然后margin-top选取div height的一半值 margin-left 选取div width的一半值  

其他方法参考这里~