LoginSignup
15
14

More than 5 years have passed since last update.

IEバージョン別に、違うCSSを指定したいときは

Posted at

IEと別のブラウザで、同じ値を指定しても微妙にpaddingやmarginの見え方が違ってしまいます。
細かく調整する方法として、下記のように書くことでバージョン別にCSSを指定できます。

■ 値の末尾に「\9」をつけると、IE8以下のみに適用(IEにだけCSSを指定したい場合、これを使えばOK)
■ キーの頭に「*」をつけると、IE7以下のみに適用
■ キーの頭に「_」をつけると、IE6のみ(IE5にも効くのかは不明)に適用(IE6だけ動きがおかしいときは、これを使えばOK)

#selector {
    width: 10px; /* 全てのブラウザに適用 */
    width : 12px\9; /* IE8以下に適用 */
    *width : 11px; /* IE7以下に適用 */
    _width : 15px; /* IE6に適用 */
}
15
14
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
14