Complete the code to create a flex container class.
.flex-container { display: [1]; }The display: flex; property makes the element a flex container.
Complete the code to set the flex direction to row.
.flex-row { flex-direction: [1]; }The flex-direction: row; arranges flex items horizontally.
Fix the error in the code to center flex items horizontally.
.center-items { justify-content: [1]; }justify-content: center; centers flex items horizontally inside the container.
Fill both blanks to create a flex container that wraps items and aligns them to the end vertically.
.flex-wrap-end { flex-wrap: [1]; align-items: [2]; }flex-wrap: wrap; allows items to wrap to the next line.align-items: flex-end; aligns items to the bottom of the container vertically.
Fill all three blanks to create a flex utility class that sets direction to column, centers items horizontally, and justifies content with space between.
.flex-column-space { flex-direction: [1]; align-items: [2]; justify-content: [3]; }flex-direction: column; stacks items vertically.align-items: center; centers items horizontally.justify-content: space-between; distributes items evenly with space between them vertically.