Home › Forums › CSS › [Solved] Anchor (A) opacity in IE › Re: [Solved] Anchor (A) opacity in IE
November 13, 2009 at 10:51 am
#66513
Participant
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.