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内联元素无法在它们上设置widthheight设置,因此如果您将元素设置为display: block;,它应该可以解决您的问题。

于 2012-04-29T21:46:53.553 回答