Flexbox

flex-direction

Learn how to use the CSS flex-direction property.

CSS flex-direction

The flex-direction property sets the flex direction for an HTML element.

Syntax

.element {
  flex-direction: row;
}

HTML Context Example

<div class="card">
  This is a styled element.
</div>

<style>
.card {
  flex-direction: row;
}
</style>

Notes

Experiment in the CSS playground to see how this affects layout and styling.