Results 1 to 3 of 3

Thread: Why doesn't IE know what color: transparent is...

  1. #1
    Join Date
    Jun 2010
    Posts
    40
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Angry Why doesn't IE know what color: transparent is...

    Hello,

    I tried to make some text transparent 100% by using

    .name{color: transparent;}

    It worked with firefox, but not with IE, why is that ?

    Thanks.

  2. #2
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    because IE is dumb.

    try using opacity instead:

    Code:
    .name{
       /*  for good browsers */
       opacity: 0;
       /* for MSIE */
       filter:alpha(opacity=0);
    }

  3. #3
    Join Date
    Jun 2010
    Posts
    40
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default

    Thanks, I knew about that but IE is still .. dumb.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •