メモ。
CSSハックIE6以下のみ適用
1.スターハック・・・セレクタの前に「* html 」をつける(半角があります!)
* html #hacks { margin-top: 0px; }
2.アンダースコアハック・・・プロパティの前に「_」をつける
#hacks { _margin-top: 0px; }
IE7のみ適用
*:first-child+html #hacks { margin-top: 0px; }
#hacksの後に記載すること。
IE8とそれ以下のIEに適用
#hacks { margin-top: 0px\9; }
「\9」を追加
