案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
p:first-letter
6
{
7
font-size:200%;
8
color:#8A2BE2;
9
}
10
</style>
11
</head>
12
<body>
13
14
<h1>Welcome to My Homepage</h1>
15
<p>My name is Donald.</p>
16
<p>I live in Duckburg.</p>
17
<p>My best friend is Mickey.</p>
18
19
</body>
20
</html>
21