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

      

  • 相关阅读:
    hibernate下载及配置超详细!
    如何新建一个jar包库?
    MySQL 之 索引原理与慢查询优化
    MySQL 之 视图、触发器、存储过程、函数、事物与数据库锁
    MySql之数据操作
    MySQL 之多表查询
    MySQL 简洁 数据操作 增删改查 记不住的 看这里把
    python 并发之多进程实现
    koa-static与react-create-app搭配的路径
    koa中返回404并且刷新后才正常的解决方案
  • 原文地址:https://www.cnblogs.com/uuxanet/p/3305586.html
Copyright © 2011-2022 走看看