Chinaunix首页 | 论坛 | 博客
  • 博客访问: 846348
  • 博文数量: 221
  • 博客积分: 10033
  • 博客等级: 上将
  • 技术积分: 2325
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-06 22:00
文章分类

全部博文(221)

文章存档

2010年(8)

2009年(1)

2008年(69)

2007年(63)

2006年(80)

我的朋友

分类: 系统运维

2008-07-21 09:34:27

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有关处理浏览器兼容问题上的小技巧


阅读(1058) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~