在Firefox显示总是有问题,用下面方法解决:
1、firefox的 !important设置。
div{
background-color: red !important;
background-color: blue;
}
IE6会用后面一个覆盖前面的,而firefox用前面一个。
通过这个属性设置Firefox的一些特别地方。
2、firefox的手形:
style="cursor:hand;" 在firefox下无效。
的用:style="cursor:pointer;"
