0

Possible Duplicate:
Any way to remove IEs black border around submit button in active forms?

I can see black border around button in IE7 on windows XP. Here is the 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

I don't see any issue elsewhere except Windows XP IE7

Community
  • 1
  • 1
Mo.
  • 26,306
  • 36
  • 159
  • 225
  • @Eric I already tried this. unfortunately doesn't work here. There is no issue when I remove opacity :( – Mo. Oct 12 '12 at 16:54

1 Answers1

1

I have a feeling that it's because the button is disabled. IE has some ugly disabled styles that you can't really work around. My next suggestion would be try to throw a border:0 on there and see what happens.

dgarbacz
  • 962
  • 1
  • 7
  • 17