案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
h1
6
{
7
rotation-point:50% 50%;
8
rotation:180deg;
9
}
10
</style>
11
</head>
12
<body>
13
14
<h1>旋转效果</h1>
15
16
<p><b>注释:</b>目前没有浏览器支持 rotation-point 或 rotation 属性。</p>
17
18
</body>
19
</html>
20