实例代码“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
/* Internet Explorer 10 */
12
display:-ms-flexbox;
13
-ms-flex-direction:reverse;
14
15
/* Firefox */
16
display:-moz-box;
17
-moz-box-direction:reverse;
18
19
/* Safari, Opera, and Chrome */
20
display:-webkit-box;
21
-webkit-box-direction:reverse;
22
23
/* W3C */
24
display:box;
25
box-direction:reverse;
26
}
27
</style>
28
</head>
29
<body>
30
31
<div>
32
<p>Cat</p>
33
<p>Dog</p>
34
<p>Horse</p>
35
</div>
36
37
<p><b>Note:</b> Flexible boxes are not supported in IE 9, and earlier versions.</p>
38
39
</body>
40
</html>
41