div 居中 - 水平居中
设置div的style属性为: margin-left:auto;margin-right:auto; 可缩写为: margin:0 auto;
也可以设置css为: .juzhong_style{margin-left:auto;margin-right:auto;} 可缩写为: .juzhong_style{margin:0 auto;}
div 居中 - 垂直居中
设置div的style属性为: position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2; 针对IE6,需要修改: position:absolute;
也可以设置css为: .juzhong_style{position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2;} 针对IE6,需要修改: .juzhong_style{position:absolute;left:50%;top:50%;margin-left:width/2;margin-top:height/2;}