2012-04-29 17 views
1

我的提交按鈕圖像消失,但只在IE7及更低版本中出現問題。我已經試過:僅在IE 7中消失背景圖像

  • 添加邊框顏色
  • 加入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

你加入widthheight到內聯元素。內聯元素無法在其上設置widthheight,因此如果將元素設置爲display: block;,它應該可以解決您的問題。

+0

剛剛編輯我的問題,添加顯示:inline-block;無效:( –

+0

確定顯示:塊;工作表示感謝! –