最新区分兼容IE6/IE7/IE8/IE9/FF的CSS HACK写法和Css if hack条件语法操作说明
<!DOCTYPE
html>
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8" />
<title>DIV
IF条件实例</title>
</head>
<body>
你正在使用:
<!--[if IE
7]>
<h2>IE7</h2>
<![endif]-->
<!--[if IE
6]>
<h2>IE6</h2>
<![endif]-->
<!--[if IE
8]>
<h2>IE8</h2>
<![endif]-->
<!--[if IE 9]>
<h2>IE9</h2>
<![endif]-->
<br><br>
<strong>说明</strong>:如果你的浏览器版本为多少即会显示IE多少,针对IE6-IE9实验</body>
</html>
说明:以上针对不同IE显示不同网页内容DIV+CSS实例实验。
DIV+CSS实例二:
让IE6-IE8显示不同CSS样式效果,DIV CSS代码如下:
?
<!DOCTYPE
html>
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8" />
<title>CSS
IF条件hack实例</title>
<!--[if IE 6]>
<style
type="text/css">
.divcss{
color:#F00;}
</style>
<![endif]-->
<!--[if IE 7]>
<style type="text/css">
.divcss{
color:#FF0;}
</style>
<![endif]-->
<!--[if IE 8]>
<style type="text/css">
.divcss{
color:#00F;}
</style>
<![endif]-->
<!--[if IE 9]>
<style
type="text/css">
.divcss{
color:#000;}
</style>
<![endif]-->
</head>
<body>
<div
class="divcss">
DIV
CSS实验提示:<br>
我在IE6下是红颜色,在IE7下是黄颜色,在IE8下是蓝颜色,在IE9下是黑色
</div>
</body>
</html>
说明:以上实验仅实验IE6-IE9下if HACK。