Forums

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

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #26747
    dfdfdf
    Member

    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 :

    Any help would be greatly appreciated. Thanks in advance.

    #66513
    Rob MacKay
    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.

    #66515
    dfdfdf
    Member

    Thanks a lot Rob, it seems to work perfectly now. 8-)

    #66516
    Rob MacKay
    Participant

    awesome :)

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.