Complete the code to make the flex container arrange items in a row.
<div class="flex [1]"> <div>Item 1</div> <div>Item 2</div> <div>Item 3</div> </div>
The class flex-row arranges flex items horizontally in a row.
Complete the code to arrange flex items vertically.
<section class="flex [1] gap-4"> <p>First</p> <p>Second</p> <p>Third</p> </section>
The class flex-col arranges flex items vertically in a column.
Fix the error in the code to make flex items display in reverse row order.
<div class="flex [1]"> <span>A</span> <span>B</span> <span>C</span> </div>
The class flex-row-reverse arranges items in a row but reverses their order.
Fill both blanks to arrange flex items in a reversed column with spacing.
<nav class="flex [1] gap-6 [2]"> <a href="#">Home</a> <a href="#">About</a> <a href="#">Contact</a> </nav>
flex-col-reverse arranges items vertically in reverse order, and items-center centers them horizontally.
Fill all three blanks to create a flex container with row direction, reversed order, and centered items.
<header class="flex [1] [2] [3]"> <div>Logo</div> <div>Menu</div> <div>Profile</div> </header>
flex-row-reverse arranges items in a reversed row, items-center centers items vertically, and justify-center centers items horizontally.