Home > Article > Web Front-end > How to write if condition hack in CSS
Today I will explain to you the if conditional hack knowledge and tutorial examples in DIV+CSS. Friends can learn from our example. I hope the following cases will be helpful to you.
IE's CSS if condition Hack- css hack
Explain the if condition hack knowledge and tutorial examples in DIV+CSS
Directory
Css if hack conditional syntax
DIV+CSS if example
if conditional hack summary
Css if hack conditional syntax
740db9531de9d3577292e6db2a2923b6 Only IE f4e41d4438b40a9118e4a5222080456b
Only all WIN systems that come with IE can recognize it
11f068b984ada0bf9a400f29f1a94440 Only IE 5.0 1b771f47d72d900ba74308aee59557f0
Only IE5.0 can recognize
d0628cbc13b28d373a36f7ebb6c69425 Only IE 5.0+ 1b771f47d72d900ba74308aee59557f0
IE5.0 or IE5.5 can be recognized
77ff45aa02bda806843bc31600e44271 Only IE 6- 1b771f47d72d900ba74308aee59557f0
Only IE6 can recognize
91029187a47d4c3a99cc198a5627b173 Only IE 6/+ 365479cd1a593fd7259a0d26b86e81d9
Can be recognized by IE6 and IE5.x below IE6
c57919cd6abb067cf8b2d0cd39025954 Only IE 7/- bd121e40e132cd2f69209d509c354edd
Only recognized by IE7
f92958435b2b094c55bbcf32a6c93dd8 Only IE 7/+ 32e58b5d176aa7c802edc3635d7b0000
Can be recognized by IE7 and IE6 and IE5.x below IE7
266c419352a525843049eb7155ebf872 Only IE 8/- ef8d428f62053f467d29023cecb49d94
Only IE8 can recognize it
2, DIV+CSS example tutorial
CSS example one:
Let IE6-IE8 display different Content, DIV CSS code is as follows:
<!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>
Note: The above experiment only tests if HACK under IE6-IE8. For more exciting content, please pay attention to other related articles on the php Chinese website!
Related reading:
How to use CSS3 to create icon effects
##How to use CSS3 to create switching special effects for irregular images
How to use CSS3 to create text animation under lighting
The above is the detailed content of How to write if condition hack in CSS. For more information, please follow other related articles on the PHP Chinese website!