Home > Article > Web Front-end > Detailed example of setting an element to be translucent using CSS
Will you use CSS to set an element to be translucent? This article mainly introduces the relevant information about using CSS to set the translucency of an element. It is very good and has reference value. Friends who need it can refer to it. I hope it can help everyone.
.opacity{ filter:alpha(opacity=50); /* IE */ -moz-opacity:0.5; /* 老版Mozilla */ -khtml-opacity:0.5; /* 老版Safari */ opacity: 0.5; /* 支持opacity的浏览器*/}
Used to set an element to be semi-transparent
.filter = "alpha(opacity=" + opacity + ")"; /* IE */ .MozOpacity = (opacity / 100); /* 老版Mozilla */ .KhtmlOpacity = (opacity / 100); /* 老版Safari */ .opacity = (opacity / 100); /* 支持opacity的浏览器*/
When scaling images on the Windows platform, there may be To prevent image distortion, you can use IE's proprietary command:
img{-ms-interpolation-mode: bicubic;}
Have you learned this? Hurry up and give it a try.
Related recommendations:
CSS setting image turns gray_html/css_WEB-ITnose
##Detailed explanation of CSS3 filter Mirror attribute
Detailed explanation of CSS3 filter attribute
The above is the detailed content of Detailed example of setting an element to be translucent using CSS. For more information, please follow other related articles on the PHP Chinese website!