应用不透明度时,如何在IE7中删除按钮周围的黑色边框

时间:2012-10-12 16:41:28

标签: html css internet-explorer internet-explorer-7

  

可能重复:
  Any way to remove IEs black border around submit button in active forms?

我可以在Windows XP的IE7中看到按钮周围的黑色边框。这是css。

.disabled {
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";

  /* IE 5-7 */
  filter: alpha(opacity=60);

  /* Netscape */
  -moz-opacity: 0.6;

  /* Safari 1.x */
  -khtml-opacity: 0.6;

  /* Good browsers */
  opacity: 0.6;
}

enter image description here

除了Windows XP IE7之外,我没有看到任何其他问题

1 个答案:

答案 0 :(得分:1)

我感觉这是因为按钮被禁用了。 IE有一些丑陋的残疾风格,你无法真正解决。我的下一个建议是尝试在那里抛出一个border:0,看看会发生什么。