案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
img.ex1
5
{
6
position:absolute;
7
bottom:0px;
8
}
9
10
img.ex2
11
{
12
position:relative;
13
bottom:-100px;
14
}
15
</style>
16
</head>
17
18
<body>
19
<img class="ex1" src="/img/bg_flower.gif" />
20
<h1>This is a heading</h1>
21
<img class="ex2" src="/img/bg_flower.gif" />
22
</body>
23
</html>