IE CSS alignment issues

前端 未结 5 1868
说谎
说谎 2021-01-20 21:11

I have the following CSS that i have \"hacked\" with PHP because it doesn\'t align properly in IE7. Is there a better way to do this without resorting to PHP?



        
5条回答
  •  失恋的感觉
    2021-01-20 21:34

    #some_div {
         _margin-top:40px; //Only works on IE6
         *margin-top:30px; //Only works on IE7-IE6
          margin-top:20px\9; //Only works on IE8-IE7-IE6
          margin-top:10px; //Works on all others
    }
    

提交回复
热议问题