View Full Version : transparent.


Meizawotmeiz
06-01-2003, 04:44 PM
can someone tell me how you can use css and only css to turn all images on a page transparent?

lefty
06-01-2003, 05:35 PM
This would be my guess... I haven't tried it, but see if it works:

<style type="text/css">
<!--
img {
filter:alpha(opacity=30); }
-->
</style>

you can obviously change the opacity level and such.