做的网站使用IE7正常显示,但使用IE6时在中间空出一个大空,最初不知什么原因,找了好久才发现是IE6与IE7对百分比的理解不同造成的,默认是100%显示,IE6却不能正常,故在CSS中作修改如下:
/*Moz*/
.contentpane,
.contentpaneopen {
width: 100%;
}
/*IE7*/
*+html .contentpane,
*+html .contentpaneopen {
width: 100%;
}
/*IE6*/
*html .contentpane,
*html .contentpaneopen {
width: 95%;
}
其中.contentpane,.contentpaneopen 是在IE6中显示不正常的DIV的CLASS编号。