files/en-us/web/css/reference/properties/box-orient/index.md
{{Non-standard_header}}{{Deprecated_Header}}
[!WARNING] This is a property of the original CSS flexible box layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
The box-orient CSS property sets whether an element lays out its contents horizontally or vertically.
/* Keyword values */
box-orient: horizontal;
box-orient: vertical;
box-orient: inline-axis;
box-orient: block-axis;
/* Global values */
box-orient: inherit;
box-orient: initial;
box-orient: unset;
The box-orient property is specified as one of the keyword values listed below.
horizontal
vertical
inline-axis (HTML)
block-axis (HTML)
The inline and block axes are the writing-mode dependent keywords which, in English, map to horizontal and vertical respectively.
HTML DOM elements lay out their contents along the inline-axis by default. This CSS property will only apply to HTML elements with a CSS {{CSSxRef("display")}} value of box or inline-box.
{{cssinfo}}
{{CSSSyntaxRaw(box-orient = horizontal | vertical | inline-axis | block-axis)}}
Here, the box-orient property will cause the two {{HTMLElement("p")}} sections in the example to display in the same line.
<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>
div.example {
display: -moz-box; /* Mozilla */
display: -webkit-box; /* WebKit */
display: box; /* As specified */
/* Children should be oriented vertically */
-moz-box-orient: horizontal; /* Mozilla */
-webkit-box-orient: horizontal; /* WebKit */
box-orient: horizontal; /* As specified */
}
{{ EmbedLiveSample('Setting horizontal box orientation', '', 100) }}
Not part of any standard.
{{Compat}}