CSS里的if条件hack怎么写
程序员文章站
2022-03-15 23:47:09
...
今天为大家讲解DIV+CSS中if条件hack知识与教程实例,各位朋友可以借鉴一下我们的这个例子。希望下面的案列对你有所帮助。
IE的CSS if条件Hack- css hack
为大家讲解DIV+CSS中if条件hack知识与教程实例
目录
Css if hack条件语法
DIV+CSS if实例
if条件hack总结
Css if hack条件语法
<!--[if IE]> Only IE <![endif]-->
仅所有的WIN系统自带IE可识别
<!--[if IE 5.0]> Only IE 5.0 <![endif]-->
只有IE5.0可以识别
<!--[if gt IE 5.0]> Only IE 5.0+ <![endif]-->
IE5.0包换IE5.5都可以识别
<!--[if lt IE 6]> Only IE 6- <![endif]-->
仅IE6可识别
<!--[if gte IE 6]> Only IE 6/+ <![endif]-->
IE6以及IE6以下的IE5.x都可识别
<!--[if lte IE 7]> Only IE 7/- <![endif]-->
仅IE7可识别
<!--[if gte IE 7]> Only IE 7/+ <![endif]-->
IE7以及IE7以下的IE6、IE5.x都可识别
<!--[if IE 8]> Only IE 8/- <![endif]-->
仅IE8可识别
2、DIV+CSS实例教程
CSS实例一:
让IE6-IE8显示不同的内容,DIV CSS代码如下:
<!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]--> <br><br> <strong>说明</strong>:如果你的浏览器版本为多少即会显示IE多少,针对IE6-IE8实验CSS教程 </body> </html> 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"> .div{ color:#F00;} </style> <![endif]--> <!--[if IE 7]> <style type="text/css"> .div{ color:#FF0;} </style> <![endif]--> <!--[if IE 8]> <style type="text/css"> .div{ color:#00F;} </style> <![endif]--> </head> <body> <div class="div"> DIV CSS实验提示:<br> 我在IE6下是红颜色,在IE7下是黄颜色,在IE8下是蓝颜色 </div> </body> </html>
说明:以上实验仅实验IE6-IE8下if HACK。更多精彩请关注其它相关文章!
相关阅读:
以上就是CSS里的if条件hack怎么写的详细内容,更多请关注其它相关文章!
推荐阅读
-
uni-app 怎么写组件,引用组件时怎么改变组件里的文字
-
ifame里的.aspx页面怎么通过Button_Click提交后自动刷新iframe所在的页面。_html/css_WEB-ITnose
-
浏览器插件怎么写的?_html/css_WEB-ITnose
-
怎么把radio里被选择的值传到javascript里面?_html/css_WEB-ITnose
-
求百度贴吧里面的图片墙,那样式怎么写的?_html/css_WEB-ITnose
-
这样的一个问题样式怎么写?_html/css_WEB-ITnose
-
点击Chrome浏览器里的输入框后,会出现一个黄色的矩形框,怎么去掉这个?_html/css_WEB-ITnose
-
这样的一个问题样式怎么写?_html/css_WEB-ITnose
-
求百度贴吧里面的图片墙,那样式怎么写的?_html/css_WEB-ITnose
-
小白求指点:自定义函数内调用另外一个函数里的全局变量,该怎么写啊