The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Home › Forums › CSS › [Solved] Anchor (A) opacity in IE
Hello all,
Here is a simple HTML page. In Firefox or Safari, the link is transparent as expected. In IE (including version 8), the link is opaque. And I don’t know why…
Here’s the code of the page :
this is a transparent link
Any help would be greatly appreciated. Thanks in advance.
try it as
<A HREF="index.html" STYLE="font-size: 36px; background-color: #FFFFFF; opacity: 0.5; filter: alpha(opacity=50); zoom:1;">this is a transparent link</A>
adding the zoom:1; is an opacity hack for IE – you might also want to try adding "position:relative;" if that don’t work.
Thanks a lot Rob, it seems to work perfectly now. 8-)
awesome :)