CSS Tips: Image Transparency June 17, 2009
To make an image semi-transparent, create a class in your CSS file and add the following code or add the code to a STYLE attribute.
filter:alpha(opacity={ NUM });
-moz-opacity: { NUM_PERCENT };
opacity: { NUM_PERCENT };
where { NUM } is a number from 0 to 100 ( { NUM_PERCENT } is a number between 0 and 1 ). |