Tailwind CSS Classes

Tailwind CSS class .flex-row

<div class="inline-flex flex-row">
  <div class="bg-teal-400 p-4 m-2">1</div>
  <div class="bg-teal-400 p-4 m-2">2</div>
  <div class="bg-teal-400 p-4 m-2">3</div>
</div>

Preview

CSS source

.flex-row {
    flex-direction: row;
}

Check .flex-row in a real project

Click one of the examples listed below to open the Shuffle Visual Editor with the UI library that uses the selected component.

More Tailwind CSS classes in Flex category

© 2024 Shuffle. All rights reserved.