Home  >  Article  >  Web Front-end  >  CSS透明属性详解_html/css_WEB-ITnose

CSS透明属性详解_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:54:461130browse

.transparent_class {filter:alpha(opacity=50);-moz-opacity:0.5;-khtml-opacity: 0.5;opacity: 0.5;}

上面的几个属性分别是:

opacity: 0.5; 这是最重要的,因为它是CSS标准.该属性支持firefox, Safari和 Opera.

filter:alpha(opacity=50); 这个是为IE6设的,可取值在0-100,其它三个0到1.

-moz-opacity:0.5; 这个是为了支持一些老版本的Mozilla浏览器.

-khtml-opacity: 0.5; 这个为了支持一些老版本的Safari浏览器.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn