+ 4
Queation
How can I make an image transparent so I can insert texts inside it in html?
6 odpowiedzi
+ 4
So cn I now write on to of d image?
+ 4
Alryt. thanks alot
+ 4
Problem not solved. straight to point; how do I insert image as an article background?
+ 2
https://www.w3schools.com/css/css_image_transparency.asp
img {
opacity: 0.5;
filter: alpha(opacity=50); /* For IE8 and earlier */
}
This will apply to all images. If you want opacity to single image - assign class or id and refer in CSS code to class name or id.
+ 1
Not sure what you are asking?
You place text on top of image. Also image do not to have to be transparent for this.
Guess what you might need is not to place image with img, but try to set image as background property.