htmlcss

This deprecated property is not recommended. Authors should generally find an alternative way to accomplish the same task while adhering to all best practices, or simply do without it if it is unimportant.


The layout-flow property is used in CSS and certain HTML elements. This property controls the direction and flow of the content in an element. It has been deprecated in favor of the CSS writing-mode property which accomplishes the same task.

Values


HTML example:

<p style="layout-flow:horizontal;">
Paragraph content.
</p>


CSS example:

p {
   layout-flow:horizontal;
}