问题: 做横向导航栏时,ul 设置为 float 且有背景色,li 设置为 float。ie6-7 背景颜色失效 解决: 很多 ie 的 bug 都可以通过触发 layout 来解决 ul 添加属性 1、height:1%; 2、float:left; 3、zoom:1;
0