案例:CSS案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p:first-line 
5
{
6
color: #ff0000;
7
font-variant: small-caps
8
}
9
</style>
10
</head>
11
12
<body>
13
<p>
14
You can use the :first-line pseudo-element to add a special effect to the first line of a text!
15
</p>
16
</body>
17
18
</html>
19