Home>Article>Web Front-end> How to set transparency for html images
htmlHow to set the transparency of the image: first create a div; then set a class name; finally set the transparency of the image through attributes such as "filter:alpha(opacity=50);opacity:0.5;".
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.
About setting the transparency of the background image (html css)
Set the transparency of the background image, not the color, it is the image display
This Just like some blogs can change the background image as the theme, after reading it for a long time, I finally figured out that
6c04bd5ca3fcae76e30b72ad730ca86d cannot directly set the transparency of the image
You need to use< ;div>
needs to be written beforehand and represented by class methods.
Then reference this class in the div, you can set the image transparency
But there are also problems with this. If there is text in the middle, it will also become a transparent font, and it must be used as the background For pictures, you need to put the text in the middle of two dc6dce4a544fdca2df29d5ac0ea9906b
, so you need to set the font transparency of the text in css
opacity: 1;
.
Recommended learning:html video tutorial
The above is the detailed content of How to set transparency for html images. For more information, please follow other related articles on the PHP Chinese website!