案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
appearance:button;
8
-moz-appearance:button; /* Firefox */
9
-webkit-appearance:button; /* Safari and Chrome */
10
}
11
</style>
12
</head>
13
<body>
14
15
<p><b>注释:</b>Internet Explorer 和 Opera 不支持 appearance 属性。</p>
16
17
<div>一些文本。</div>
18
19
</body>
20
</html>
21