0
Is there a property in HTML to increase the transparency of an image
2 Respostas
+ 5
HTML doesn't have any transparency property. To control this, you will have to use CSS opacity property.
You can add the following code between the <head></head> HTML element:
<style>
img {
opacity: 0.5;
filter: alpha(opacity=50); /* For IE8 and earlier */
}
</style>
0
thanks