blob: 7f2401d93e88d1207272db0793ab8b7122df0a29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
---
title: box-orient
slug: Web/CSS/box-orient
tags:
- CSS
- 標準外
- リファレンス
- recipe:css-property
browser-compat: css.properties.box-orient
translation_of: Web/CSS/box-orient
---
{{CSSRef}}{{Non-standard_header}}
> **Warning:** これはもともと CSS Flexible Box Layout Module の草稿のプロパティでしたが、より新しい標準に置き換えられました。現在の標準についての情報は[フレックスボックス](/ja/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox)を参照してください。
**`box-orient`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素がその中身をレイアウトする方向が、水平か垂直かを指定します。
```css
/* キーワード値 */
box-orient: horizontal;
box-orient: vertical;
box-orient: inline-axis;
box-orient: block-axis;
/* グローバル値 */
box-orient: inherit;
box-orient: initial;
box-orient: unset;
```
## 構文
`box-orient` プロパティは以下の列挙されたキーワード値のうちの一つで指定します。
### 値
- `horizontal`
- : ボックスは、その内容を水平にレイアウトします。
- `vertical`
- : ボックスは、その内容を垂直にレイアウトします。
- `inline-axis` (HTML)
- : ボックスは、子をインライン軸に沿って表示します。
- `block-axis` (HTML)
- : ボックスは、子をブロック軸に沿って表示します。
`inline-axis` と `block-axis` は書字方向に依存するキーワードであり、英語では、それぞれ `horizontal` と `vertical` に対応付けられます。
## 解説
HTML DOM 要素は既定で中身をインライン軸に沿ってレイアウトします。この CSS プロパティは HTML 要素のうち CSS の {{CSSxRef("display")}} が `box` または `inline-box` の値であるものに対してのみ適用されます。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
### ボックスを水平方向に設定
ここでは、`box-orient`プロパティにより、例題の 2 つの {{HTMLElement("p")}} セクションが同じ行に表示されます。
#### HTML
```html
<div class="example">
<p>I will be to the left of my sibling.</p>
<p>I will be to the right of my sibling.</p>
</div>
```
#### CSS
```css
div.example {
display: -moz-box; /* Mozilla */
display: -webkit-box; /* WebKit */
display: box; /* 仕様書通り */
/* 子は垂直に向けられる */
-moz-box-orient: horizontal; /* Mozilla */
-webkit-box-orient: horizontal; /* WebKit */
box-orient: horizontal; /* 仕様書通り */
}
```
### 結果
{{ EmbedLiveSample('Setting_horizontal_box_orientation', 600, 50, '', 'Web/CSS/box-orient') }}
## 仕様書
標準仕様には含まれていません。
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{CSSxRef("box-direction")}}
- {{CSSxRef("box-pack")}}
- {{CSSxRef("box-align")}}
- {{CSSxRef("flex-direction")}}
|