比较常用的是只对IE进行hack,常见的写法有以下几种:
1. IE条件注释!-- [ if IE]link href="ie.css" rel="stylesheet" type="text/css" /![endif]--
还可只对某一IE版本或以下版本hack
2. html/body标签中写class hook比如使用jQuery Browser Plugin后通过firefox浏览页面html被附加上这样的class
html class="win firefox firefox3 gecko gecko1"
之后针对不同的浏览器(及版本)写hack
Google的某些产品使用的是此方法,比如Google Reader,只不过hook的对象为body标签而非html标签。
通过前后台生成hook皆可
CSS Hack比如:
div{color: black; /* all browsers */color: red\9; /* E8 and below */#color: green; /* IE7 and below */_...[ 查看全文 ]2016-02-20 标签: