zoukankan      html  css  js  c++  java
  • 根据ie浏览器不同的类别选择不同的css

    如果是IE浏览器则选择all-ie-only.css
    
    <!--[if IE]>
    	<link rel="stylesheet" type="text/css" href="all-ie-only.css" />
    <![endif]-->
    如果不是ie浏览器则选择not-ie.css
    
    <!--[if !IE]><!-->
    	<link rel="stylesheet" type="text/css" href="not-ie.css" />
     <!--<![endif]-->
    一下是不同ie浏览器选择的不同css标准
    Target only IE 7
    
    <!--[if IE 7]>
    	<link rel="stylesheet" type="text/css" href="ie7.css">
    <![endif]-->
    Target only IE 6
    
    <!--[if IE 6]>
    	<link rel="stylesheet" type="text/css" href="ie6.css" />
    <![endif]-->
    Target only IE 5
    
    <!--[if IE 5]>
    	<link rel="stylesheet" type="text/css" href="ie5.css" />
    <![endif]-->
    Target only IE 5.5
    
    <!--[if IE 5.5000]>
    <link rel="stylesheet" type="text/css" href="ie55.css" />
    <![endif]-->
    Target IE 6 and lower
    
    <!--[if lt IE 7]>
    	<link rel="stylesheet" type="text/css" href="ie6-and-down.css" />
    <![endif]-->
    <!--[if lte IE 6]>
    	<link rel="stylesheet" type="text/css" href="ie6-and-down.css" />
    <![endif]-->
    Target IE 7 and lower
    
    <!--[if lt IE 8]>
    	<link rel="stylesheet" type="text/css" href="ie7-and-down.css" />
    <![endif]-->
    <!--[if lte IE 7]>
    	<link rel="stylesheet" type="text/css" href="ie7-and-down.css" />
    <![endif]-->
    Target IE 8 and lower
    
    <!--[if lt IE 9]>
    	<link rel="stylesheet" type="text/css" href="ie8-and-down.css" />
    <![endif]-->
    <!--[if lte IE 8]>
    	<link rel="stylesheet" type="text/css" href="ie8-and-down.css" />
    <![endif]-->
    Target IE 6 and higher
    
    <!--[if gt IE 5.5]>
    	<link rel="stylesheet" type="text/css" href="ie6-and-up.css" />
    <![endif]-->
    <!--[if gte IE 6]>
    	<link rel="stylesheet" type="text/css" href="ie6-and-up.css" />
    <![endif]-->
    Target IE 7 and higher
    
    <!--[if gt IE 6]>
    	<link rel="stylesheet" type="text/css" href="ie7-and-up.css" />
    <![endif]-->
    <!--[if gte IE 7]>
    	<link rel="stylesheet" type="text/css" href="ie7-and-up.css" />
    <![endif]-->
    Target IE 8 and higher
    
    <!--[if gt IE 7]>
    	<link rel="stylesheet" type="text/css" href="ie8-and-up.css" />
    <![endif]-->
    <!--[if gte IE 8]>
    	<link rel="stylesheet" type="text/css" href="ie8-and-up.css" />
    <![endif]-->
    

      

  • 相关阅读:
    Redis安装-Redis常用命令-redis.conf配置信息总结
    JVM--心得 OOM时的堆信息获取与分析
    JVM--心得 堆栈区域和GC的设置
    JVM--心得(加载 链接 初始化)
    JVM--心得概念
    我的Python之路:找一个幸运数
    springboot模板
    spring boot入门
    java自定义注解
    git集成idea
  • 原文地址:https://www.cnblogs.com/uuxanet/p/3305586.html
Copyright © 2011-2022 走看看