You are here: Reference > CSS > properties > layout-flow

layout-flow property

Browser support:
Specifies the flow and direction of the content in an element.
This property is deprecated, use the writing-mode property instead.
JavaScript page for this property: layoutFlow. You can find other example(s) there.

Possible values:

 One of the following values: 
horizontal
Default. Content flows from left to right.
vertical-ideographic
Content flows from top to bottom.
Default: horizontal.

Example HTML code 1:

This example illustrates the use of the layout-flow property:
<head>
    <style>
        .example {
            layout-flow: vertical-ideographic;
        }
    </style>
</head>
<body>
    <div class="example">vertical-ideographic</div>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content