ps: 由于近来需要研究IE下兼容问题,今天又再次翻起起这些针对IE的hack,于是决定写下这篇笔记,记录下这些本该献祭级浏览器下的处理方法,用于备忘
一、IE10以及以下版本均会生效(ie edge模式下 显示与 主流浏览器并无差异 在IE10 - IE5均产生背景为绿色)实测
测试代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> .div{ height: 40px ; background:pink ; background: yellowgreen9 ; } </style> </head> <body> <div class="div">test</div> </body> </html>
二、IE7会独自生效需在css代码最前方增加“ * ”(星号) 和 在css最前方增加 “ + ”(该方法在IE7 - IE 5)均会生效
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 7 <title>Document</title> 8 <style> 9 .div{ 10 height: 40px ; 11 background:pink ; 12 /* IE7代码 */ 13 *background: yellow ;
+background: yellow ;/*该方法在ie7 - ie5 下均产生效果*/
14 } 15 </style> 16 </head> 17 <body> 18 <div class="div"></div> 19 </body> 20 </html>
三、IE6 - IE5在css代码最前方增加“ *_”(下划线)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> .div{ height: 40px ; background:pink ; background: yellowgreen9 ; +background: yellow ; /* ie6 - ie5 下均生效了 */ _background: blue ; } </style> </head> <body> <div class="div"></div> </body> </html>