针对不同版本的IE调用不同CSS样式

来源:互联网 发布:电脑桌面图标美化软件 编辑:程序博客网 时间:2024/05/23 22:49
  1. <!– 默认先调用css.css样式表 –>  
  2.   
  3. <link rel=”stylesheet” type=”text/css” href=”css.css” />  
  4.   
  5.   
  6. <!–[if IE 7]>  
  7.   
  8. <!– 如果IE浏览器版是7,调用ie7.css样式表 –>  
  9.   
  10. <link rel=”stylesheet” type=”text/css” href=”ie7.css” />  
  11.   
  12. <![endif]–>  
  13.   
  14.   
  15. <!–[if lte IE 6]>  
  16.   
  17. <!– 如果IE浏览器版本小于等于6,调用ie.css样式表 –>  
  18.   
  19. <link rel=”stylesheet” type=”text/css” href=”ie.css” />  
  20.   
  21. <![endif]–>  
原创粉丝点击