hack使用规范
hack使用规范
重要原则:尽量少用hack,能不hack坚决不hack,不允许滥用hack。
如果需要使用hack,请参考以下hack方式:
区分规则
| IE6 | * html selector { … } |
| IE7 | *+html selector { … } |
| 非IE6 | html>body selector { … } |
| firefox | @-moz-document url-prefix() { … } |
| safari3+/chrome | @media screen and (-webkit-min-device-pixel-ratio:0) { … } |
| opera | @media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) { … } |
| iPhone/mobile webkit | @media screen and (max-device-width: 480px) { … } |
区分属性
| IE6 | _property: value |
| IE7 | +property: value |
| IE6/7 | *property: value |
| IE6/7/8/9 | property: value\9 |