In designing a new website I want to use things like stars and gradients and to do that properly I need the background of various items to be transparent.
GIF doesn't seem to work in anything other than a basic way so obviously PNG is better for this but the problem is IE6 doesn't support it.
How do you guys get around that? Say, for example, you wanted to suspend a star over the corner of a div and not block out what's under the corners.
With that in mind I looked at the possibility of using a 1 CSS stylesheet for IE6 and 1 for all the rest. That way the IE6 may not look as good but it would be usable.
Would this work:
<link href="css/style.css" rel="stylesheet" type="text/css" />
<!--[if gte IE 6]>
<link rel="stylesheet" type="text/css" href="css/iespecific.css" />
<![endif]-->
?? Or is this not possible either?
Any help would be great.
GIF doesn't seem to work in anything other than a basic way so obviously PNG is better for this but the problem is IE6 doesn't support it.
How do you guys get around that? Say, for example, you wanted to suspend a star over the corner of a div and not block out what's under the corners.
With that in mind I looked at the possibility of using a 1 CSS stylesheet for IE6 and 1 for all the rest. That way the IE6 may not look as good but it would be usable.
Would this work:
<link href="css/style.css" rel="stylesheet" type="text/css" />
<!--[if gte IE 6]>
<link rel="stylesheet" type="text/css" href="css/iespecific.css" />
<![endif]-->
?? Or is this not possible either?
Any help would be great.