之前在这里:https://xhl.me//archives/534总结了一次,这次加上点。
CSS代码
- 这个是基本大家都知道的:
- test{margin:1px!important;margin:2px}
- firefox/IE7 -> 1px
- IE6 -> 2px
- 下面两个是新发现的(这里不考虑IE5了,最值得看的就是第三个):
- test{margin:1px;+margin:2px}
- firefox ->1px
- IE6/IE7 ->2px
- test{margin:4px!important;>margin:3px!important;margin:2px;}
- firefox -> 4px
- IE7 -> 3px
- IE6 -> 2px