实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
width:350px;
8
height:100px;
9
border:1px solid black;
10
  
11
/* Firefox */
12
display:-moz-box;
13
-moz-box-orient:horizontal;
14
15
/* Safari, Opera, and Chrome */
16
display:-webkit-box;
17
-webkit-box-orient:horizontal;
18
19
/* W3C */
20
display:box;
21
box-orient:horizontal;
22
}
23
</style>
24
</head>
25
<body>
26
27
<div>
28
<p>Cat</p>
29
<p>Dog</p>
30
<p>Horse</p>
31
</div>
32
33
<p><b>Note:</b> The box-orient property is not supported in IE.</p>
34
35
</body>
36
</html>
37