ホームページ  >  記事  >  ウェブフロントエンド  >  css:条件付きコメント判定browser_html/css_WEB-ITnose

css:条件付きコメント判定browser_html/css_WEB-ITnose

WBOY
WBOYオリジナル
2016-06-24 11:32:08822ブラウズ

すべての IE で認識 IE のすべてのバージョンを対象

<!--[if IE]>	<link rel="stylesheet" type="text/css" href="all-ie-only.css" /><![endif]-->

IE を除くすべての対象 IE 以外のすべてを対象

<!--[if !IE]><!-->	<link rel="stylesheet" type="text/css" href="not-ie.css" /> <!--<![endif]-->

IE7 のみで認識 対象 IE 7 ONLY

<!--[if IE 7]>	<link rel="stylesheet" type="text/css" href="ie7.css"><![endif]-->

IE6の認識でのみ利用可能ターゲット IE 6 のみ

<!--[if IE 6]>	<link rel="stylesheet" type="text/css" href="ie6.css" /><![endif]-->

IE5 のみがターゲット IE 5 のみを認識します

<!--[if IE 5]>	<link rel="stylesheet" type="text/css" href="ie5.css" /><![endif]-->

IE6 およびそれ以下のバージョンはターゲット IE 6 以下を認識します

<!--[if lt IE 7]>	<link rel="stylesheet" type="text/css" href="ie6-and-down.css" /><![endif]-->

IE7 および IE7 以下のバージョン ターゲットを認識IE 7 and LOWER

<!--[if lte IE 6]>	<link rel="stylesheet" type="text/css" href="ie6-and-down.css" /><![endif]-->

<!--[if lt IE 8]>	<link rel="stylesheet" type="text/css" href="ie7-and-down.css" /><![endif]-->

IE6 以降はターゲット IE 6 以降を認識可能

<!--[if lte IE 7]>	<link rel="stylesheet" type="text/css" href="ie7-and-down.css" /><![endif]-->

<!--[if gt IE 5.5]>	<link rel="stylesheet" type="text/css" href="ie6-and-up.css" /><![endif]-->

IE7以降はTarget IE 7以降を認識できます

<!--[if gte IE 6]>	<link rel="stylesheet" type="text/css" href="ie6-and-up.css" /><![endif]-->

<!--[if gt IE 6]>	<link rel="stylesheet" type="text/css" href="ie7-and-up.css" /><![endif]-->

https://css-tricks.com/how-to-create-an-ie-only-stylesheet/

より

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。