IE6,IE7,FF等浏览器不兼容原因及解决办法第一种:
.div {
background:orange;/*ff*/
*background:green !important;/*ie7*/
*background:blue; /*ie6*/
}
第二种:
.div {
margin:10px;/*ff*/
*margin:15px;/*ie7*/
_margin:15px;/*ie6*/
}
第三种:
#div { color: #333; } /* ff */
* html #div { color: #666; } /* IE6 */
*+html #div { color: #999; } /* IE7 */
兼容Ie6,Ie7,Firefox的办法XHTML+CSS兼容性解决方案小集一些css有关处理浏览器兼容问题上的小技巧
阅读(1137) | 评论(0) | 转发(0) |