案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.normal {font-variant: normal}
5
p.small {font-variant: small-caps}
6
</style>
7
</head>
8
9
<body>
10
<p class="normal">This is a paragraph</p>
11
<p class="small">This is a paragraph</p>
12
</body>
13
14
</html>
15