cssbox-orient属性用于指定box(框)的子元素是否应按水平或垂直排列。水平框中的子元素从左向右进行显示,而垂直框的子元素从上向下进行显示。
cssbox-orient属性怎么用?
box-orient属性规定框的子元素是否应水平或垂直排列。
语法:
box-orient:horizontal|vertical|inline-axis|block-axis|inherit;
属性值:
horizontal:在水平行中从左向右排列子元素。
vertical:从上向下垂直排列子元素。
inline-axis:沿着行内轴来排列子元素(映射为horizontal)。
block-axis:沿着块轴来排列子元素(映射为vertical)。
inherit:应该从父元素继承box-orient属性的值。
说明:水平框中的子元素从左向右进行显示,而垂直框的子元素从上向下进行显示。不过,box-direction和box-ordinal-group能够改变这种顺序。
注:目前所有主流浏览器都不支持box-orient属性。Firefox通过私有属性-MOZ-box-orient支持。Safari,Opera,和Chrome通过私有属性-webkit-box-orient支持。
cssbox-orient属性示例
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<style>
div{
width:350px;
height:150px;
border:1pxsolidblack;
/*Firefox*/
display:-moz-box;
-moz-box-orient:horizontal;
/*Safari,Opera,andChrome*/
display:-webkit-box;
-webkit-box-orient:horizontal;
/*W3C*/
display:box;
box-orient:horizontal;
}
</style>
</head>
<body>
<div>
<p>段落1。</p>
<p>段落2。</p>
<p>段落3。</p>
</div>
<p><b>注释:</b>IE不支持box-orient属性。</p>
</body>
</html>
Tag:
怎么