Log in

View Full Version : Why doesn't IE know what color: transparent is...



Wisdom
11-14-2010, 04:15 PM
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.

traq
11-14-2010, 07:00 PM
because IE is dumb.

try using opacity instead:


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

Wisdom
11-15-2010, 05:45 PM
Thanks, I knew about that but IE is still .. dumb.