对于一般的div层,想要它窗口居中,可以用style="margin-left:auto;margin-right:auto;"来实现,简写就是style="margin:0 auto;"
而对于style="position:absolute;width:300px;height:200px;"这样的浮动层,如果大小已知,想要窗口居中,想到一个办法就是style="position:absolute;top:50%;left:50%;margin-left:-150px;margin-top:-100px;"
当然如果大小是动态的就另当别论,再作研究.