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

推荐订阅源

Forbes - Security
Forbes - Security
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
Blog — PlanetScale
Blog — PlanetScale
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
U
Unit 42
I
InfoQ
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
V
Visual Studio Blog
B
Blog RSS Feed
Vercel News
Vercel News
F
Fortinet All Blogs
Know Your Adversary
Know Your Adversary
T
Troy Hunt's Blog
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
Jina AI
Jina AI
小众软件
小众软件
T
Threatpost
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
The Hacker News
The Hacker News
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
Scott Helme
Scott Helme
B
Blog
腾讯CDC
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
S
Schneier on Security
N
News and Events Feed by Topic
Microsoft Security Blog
Microsoft Security Blog
K
Kaspersky official blog
G
Google Developers Blog
T
Tor Project blog
PCI Perspectives
PCI Perspectives
S
Secure Thoughts
Google Online Security Blog
Google Online Security Blog
Latest news
Latest news
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
罗磊的独立博客

博客园 - 碧海蓝天

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