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.
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.
because IE is dumb.
try using opacity instead:
Code:.name{ /* for good browsers */ opacity: 0; /* for MSIE */ filter:alpha(opacity=0); }
Thanks, I knew about that but IE is still .. dumb.
Bookmarks