Hey,
I am trying to make links progressively less alpha. A fading is based on text size. PHP does all the calculations, to produce code similar to the following code. However, the actual HTML here does not seem to work.
Code:
<body style="font-weight:bold;">
<h3>Tags</h3><br />
<a href='http://link' style='font-size: 22pt; filter:alpha(opacity=50); opacity: 0.5; '>Link One</a>
<a href='http://link' style='font-size: 16pt; filter:alpha(opacity=71.4285714286); opacity: 0.714285714286; '>Link Two</a>
<a href='http://link/' style='font-size: 8pt; filter:alpha(opacity=100); opacity: 1; '>Link Three</a>
<a href='http://link/' style='font-size: 14pt; filter:alpha(opacity=78.5714285714); opacity: 0.785714285714; '>Link Four</a>
</body>
If you test this code in firefox, it works fine, but the filter:alpha, for internet explorer, does not seem to work.
Is there another way to have this same affect?
Thanks,
Grae