opacity 属性设置元素的不透明级别。
opacity: value|inherit;
值 | 说明 |
value | 规定不透明度。从 0.0 (完全透明)到 1.0(完全不透明)。 |
inherit | 应该从父元素继承 opacity 属性的值。 |
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<head>
<style>
div
{
color: white;
background-color:green;
opacity:0.6;
filter:Alpha(opacity=60); /* IE8 以及更早的浏览器 */
}
</style>
</head>
<body>
<div>本元素的不透明度是 0.6。请注意,文本和背景色<i>都受到</i>不透明级别的影响。</div>
</body>
</html>
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
1.0 | 1.0 | 1.0 | 8.0 |