效果图:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Translucency 半透明层</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style>
#container {
position: absolute;
top: 20px;
left: 20px;
width: 400px;
height: 300px;
background: url(http://www.codefans.net/jscss/demoimg/201103/limes.jpg) no-repeat;
}
#container .textblock {
filter: alpha(opacity=60);
opacity: 0.6;
margin-top: 50px;
margin-left: 50px;
width: 280px;
background: #ffffff;
border: 1px solid #007101;
padding: 0.5em;
font: 80%/1.6 Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<div id="container">
<div class="textblock">
<p>360安全卫士,你声称让电脑跑的最快,可你现在是不是太霸道了?打开什么你都要蹦个提示框,关掉你还要浪费我时间,你烦人不??少了你电脑就不运行了?</p>
<p>国人就这点素质 ,新闻早说了中国不会受核辐射,而且吃碘也对抗辐射起不到什么作用?日本人还没抢盐,国人的忧患意识实在让人佩服!</p>
</div>
</div>
</body>
</html>