Complete the code to set the flex direction to row.
container {
display: flex;
flex-direction: [1];
}The flex-direction property controls the direction of flex items. row arranges items horizontally from left to right.
Complete the code to set the flex direction to column.
nav {
display: flex;
flex-direction: [1];
}The column value stacks flex items vertically from top to bottom.
Fix the error in the flex-direction property to reverse the row direction.
.menu {
display: flex;
flex-direction: [1];
}The correct value to reverse the horizontal order is row-reverse. reverse-row is invalid.
Fill both blanks to set flex direction to column-reverse and add display flex.
section {
display: [1];
flex-direction: [2];
}To use flexbox, display must be flex. To reverse vertical stacking, use column-reverse.
Fill all three blanks to create a flex container with row-reverse direction and center alignment.
.header {
display: [1];
flex-direction: [2];
justify-content: [3];
}Set display to flex to enable flexbox. Use row-reverse to reverse horizontal order. justify-content: center centers items horizontally.