实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
background-color:red;
8
opacity:0.5;
9
filter:Alpha(opacity=50); /* IE8 and earlier */
10
}
11
</style>
12
</head>
13
<body>
14
15
<div>This element's opacity is 0.5! Note that both the text and the background-color are affected by the opacity level!</div>
16
17
</body>
18
</html>
19