HTML HTML:IE6和IE7的条件HTML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML HTML:IE6和IE7的条件HTML相关的知识,希望对你有一定的参考价值。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<!-- IE 5, 5.5, 6 CSS -->
<!--[if lte IE 6]>
<link rel="stylesheet" href="css/ie6.css" type="text/css" media="screen" charset="utf-8" />
<![endif]-->

<!-- IE 7 CSS -->
<!--[if gte IE 7]>
<link rel="stylesheet" href="css/ie7.css" type="text/css" media="screen" charset="utf-8" />
<![endif]-->

</head>
<body>
</body>
</html>

HTML IE条件评论

<!--[if IE]>
	IE Conditional Comment: Internet Explorer
<![endif]-->


<!--[if !IE]><!-->
	IE Conditional Comment: NOT Internet Explorer
<!-- <![endif]-->


<!--[if IE 5.0]>
	IE Conditional Comment: Internet Explorer 5.0 only
<![endif]-->


<!--[if lt IE 6]>
	IE Conditional Comment: Internet Explorer 5.x
<![endif]-->


<!--[if IE 5.5]>
	IE Conditional Comment: Internet Explorer 5.5 only
<![endif]-->


<!--[if lte IE 6]>
	IE Conditional Comment: Internet Explorer 6 and below
<![endif]-->


<!--[if lt IE 7]>
	IE Conditional Comment: Internet Explorer 6 and below
<![endif]-->


<!--[if IE 6]>
	IE Conditional Comment: Internet Explorer 6 only
<![endif]-->


<!--[if gte IE 7]>
	IE Conditional Comment: Internet Explorer 7 and above
<![endif]-->

以上是关于HTML HTML:IE6和IE7的条件HTML的主要内容,如果未能解决你的问题,请参考以下文章

HTML 只有IE6 / IE7

让IE6\IE7\IE8支持HTML5标签

完美解决IE(IE6/IE7/IE8)不兼容HTML5标签的方法

第1版,IE6和IE7

IE6/IE7/IE8兼容H5标签

IE6/IE7下position:absolute;绝对定位偏移不显示问题