1

送信ボタンの画像が消えるという問題がありますが、IE7 以下でのみ発生します。私はもう試した:

  • ボーダーカラーの追加
  • 追加background-color
  • min-height: 22pxトリガーに追加hasLayout
  • 追加display: inline-block;

しかし、どれも機能しませんでした。

これは私のフォームです: http://www.bitstream.ca/contact.html

HTML:

<button id="submit" type="submit">Submit</button>

CSS :

#submit{
    background: url('imgs/submit.png') no-repeat top;
    cursor: pointer;
    width: 79px;
    height: 22px;
    border: 1px;
    text-indent: -9999px;
}
4

1 に答える 1

4

インライン要素にwidthandを追加しています。heightインライン要素にはwidthorheightを設定できないため、要素をに設定するdisplay: block;と問題が解決するはずです。

于 2012-04-29T21:46:53.553 に答える