案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.one
5
{
6
position:fixed;
7
left:5px;
8
top:5px;
9
}
10
p.two
11
{
12
position:fixed;
13
top:30px;
14
right:5px;
15
}
16
</style>
17
</head>
18
<body>
19
20
<p class="one">一些文本。</p>
21
<p class="two">更多的文本。</p>
22
23
</body>
24
</html>
25