A strange problem is the disappearance of borders when Opacity is applied in IE / 8/9, but NOT in 7!
I basically have a tabbed menu at the top of the screen. Ie:
<table> <tr> <td class="tab">button 1...<*/td> <td class="tab">button 2....<*/td> . . . </tr> </table> <style> td { opacity: 0.45; filter:alpha(opacity=45); . . . } td.tab:hover { opacity: 1; filter:alpha(opacity=100); }
Sorry for the stars, I could not handle the code formatting correctly.
Basically, it’s just assumed that you press the buttons when the mouse moves on them, but the borders just disappear! This problem occurs only in IE8 / 9, but everything works fine on IE7, FF, Chrome, Safari.
I wasted the Internet looking for some weird IE8 + border / opacity issues, but it didn't seem to be there.
Has anyone come across something similar?
Eugene
source share