LoginSignup
3
3

More than 5 years have passed since last update.

【IE7対策】 逆引きメモ

Posted at

================================

  • IE7対策用(主にCSS)のメモです。※都度追加予定です
  • 以下に書いた解決策が一概に原因とはいえませんが、参考までに...

================================

background: url(...) が表示されない

  • 解決策:url()の後にスペースを入れる
良い例
.class {
    backgroud: url() left top;
}
悪い例
.class {
    backgroud: url()left top;
}

buttonタグを押すと、破線の囲みが表示される

  • 解決策:outlineを非表示にする
css
button {
    outline: none;
}
3
3
0

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
3
3