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]-->
    

      

  • 相关阅读:
    Elasticsearch 机制 架构 集群 选举
    《Leo the late bloomer》阿虎开窍了
    各行业发明专利排行榜
    接口响应 越来越慢
    知识产权代理 与 工作流
    MBA Business Org Responsbility Account Stock
    心理学 防内耗
    Apache Kafka Zookeeper Quorum
    The different aspect of architecture(架构的不同方面)
    hPaPaas low-code/no-code 低代码
  • 原文地址:https://www.cnblogs.com/uuxanet/p/3305586.html
Copyright © 2011-2022 走看看