x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<style>
7
div.background {
8
width: 500px;
9
height: 250px;
10
background: url(klematis.jpg) repeat;
11
border: 2px solid black;
12
}
13
14
div.transbox {
15
width: 400px;
16
height: 180px;
17
margin: 30px 50px;
18
background-color: #ffffff;
19
border: 1px solid black;
20
opacity: 0.6;
21
filter: alpha(opacity=60);
22
/* For IE8 and earlier */
23
}
24
25
div.transbox p {
26
margin: 30px 40px;
27
font-weight: bold;
28
color: #000000;
29
}
30
</style>
31
</head>
32
<body>
33
<div class="background">
34
<div class="transbox">
35
<p>This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box.
36
</p>
37
</div>
38
</div>
39
</body>
40
</html>