惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
月光博客
月光博客
Jina AI
Jina AI
F
Fortinet All Blogs
博客园 - 聂微东
The Cloudflare Blog
美团技术团队
B
Blog RSS Feed
N
Netflix TechBlog - Medium
罗磊的独立博客
The GitHub Blog
The GitHub Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
V
V2EX

博客园 - 碧海蓝天

SQL Server 附加数据库时报1813错误的解决方案 SQL Server连接数据库记录清除 CSS 滤镜 各大搜索引擎网站登录入口 Windows 7安装SQL2008的顺序 如何判断搜索引擎机器人(蜘蛛)有没有爬行你的站点? - 碧海蓝天 - 博客园 Windows服务端口大全 Kubuntu下root登录 用于中文 VS2008 的 Microsoft Silverlight Tools Beta 2发布 jQuery.ajax - 碧海蓝天 - 博客园 主流浏览器引擎简介 IE、Firefox、Opera和Safari对CSS样式important和*的支持 - 碧海蓝天 - 博客园 Remoting和WebService有什么区别 今天俺也Hi了一把 Asp.net中DataBinder.Eval用法的总结 - 碧海蓝天 - 博客园 javascript refresh page jQuery Intellisense for Visual Studio 2008 验证手机号码的js代码 Linux自动安装命名
IE Version Vector - 碧海蓝天
碧海蓝天 · 2008-06-05 · via 博客园 - 碧海蓝天

    <!--[if gte IE 7]>  //gte means >= IE7
    <link rel="stylesheet" type="text/css" href="/stylesheets/ie.css" />
    <p>Both Internet Explorer 8 and Internet Explorer 7 will receive this style sheet. </p>
    <![endif]-->

    <!--[if IE 7]> //means = IE 7
    <p>You're using a recent version of Internet Explorer 7.</p>
    <![endif]-->

    <!--[if gt IE 6]> //means > IE 6
    <p>You're using a recent version of Internet Explorer.</p>
    <![endif]-->

    <!--[if lt IE 6]> // meas < IE 6
    <p>Hm. You should upgrade your copy of Internet Explorer.</p>
    <![endif]-->

    <![if !IE]> means is not IE
    <p>You're not using Internet Explorer.</p>
    <![endif]>

注:

User-Agent String and Version Vector white paper:http://code.msdn.microsoft.com/Release/ProjectReleases.aspx?ProjectName=ie8whitepapers&ReleaseId=531

Understanding User-Agent Strings:http://msdn.microsoft.com/zh-cn/library/ms537503(en-us,VS.85).aspx

How do I keep my site and add-ons working with Internet Explorer 8:http://www.microsoft.com/windows/products/winfamily/ie/ie8/readiness/DevelopersExisting.htm