CSS代码
- //显示属性
- display
- list-style
- position
- float
- clear
- //自身属性
- width
- height
- margin
- padding
- border
- background
- //文本属性
- color
- font
- text-decoration
- text-align
- vertical-align
- whitewhite-space
- other text
- content
以下是一些Hack技巧,可简单解决IE与FF之间的兼容问题,书写时保持FF,IE7,IE这样的顺序。CSS Hack可能对加载有一定的影响
CSS代码
- test:791px!important; /*FF Hack*/
- *test:785px!important; /*IE7 Hack*/
- test:777px; /*IE7以下*/


