实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
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>Note:</b> Internet Explorer and Opera do not support the appearance property.</p>
16
17
<div>Some text</div>
18
19
</body>
20
</html>
21