实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
img.ex1
6
{
7
position:absolute;
8
bottom:0px;
9
}
10
11
img.ex2
12
{
13
position:relative;
14
bottom:-100px;
15
}
16
</style>
17
</head>
18
19
<body>
20
<img class="ex1" src="/upload/love/css.gif"  width="95" height="84">
21
<h1>This is a heading</h1>
22
<img class="ex2" src="/upload/love/css.gif"  width="95" height="84">
23
</body>
24
</html>
25