No of visitors who read this post:
293
Category:
Prog\Scripting Languages
Type:
Question
Author:
Madison Clark
Hi
How can I change the opacity of image using HTML? Can you give me some reference on how to change images opacity?
Thanks.
- Login or Signup Now to post comments

Image Opacity or Transparency Method
You can change the opacity of any image by add alpha filter attribute in cascading style sheet file. For example consider if you want to change image opacity to 20 you have to use following code in css file.
img
{
opacity:0.4;
filter:alpha(opacity=20);
}
Pastor