1
IE7以下では送信ボタンの画像が消えてしまう問題があります。IE7で消えている背景画像
- が
display: inline-block;
追加hasLayout
min-height: 22px
を追加background-color
これは私のフォームです: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;
}
私の質問を編集したばかりで、display:inline-block;どちらもうまくいきません:( –
ok表示:ブロック;作業ありがとう! –