Last active
May 19, 2024 07:08
-
-
Save Baconalwaysbetterthanyou/9327960d7762bb0a334e464ef4184d5c to your computer and use it in GitHub Desktop.
FlexBox Ducky Answers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FlexBox Ducky Answers | |
1 justify-content: flex-end; | |
2 justify-content: space-around; justify-content: center; | |
3 justify-content: space-around; | |
4 justify-content: space-between; | |
5 align-items: flex-end; | |
6 justify-content: center; | |
align-items: center; | |
7 justify-content: space-around; | |
align-items: flex-end; | |
8 flex-direction: row-reverse; | |
9 flex-direction: column; | |
10 flex-direction: row-reverse; | |
justify-content: flex-end; | |
11 flex-direction: column; | |
justify-content: flex-end; | |
12 flex-direction: column-reverse; | |
justify-content: space-between; | |
13 flex-direction: row-reverse; | |
justify-content: center; | |
align-items: flex-end; | |
14 order: 1; /* Move the yellow duck one position to the left */ | |
15 order: -1; /* Move the red duck to the very beginning */ | |
16 align-self: flex-end ; /* Center the yellow duck vertically */ | |
17 order: 1; /* Move the yellow duck after the blue duck */ | |
align-self: flex-end; /* Align the yellow duck to the bottom */ | |
18 flex-wrap: wrap; | |
19 flex-direction: column; | |
flex-wrap: wrap; | |
20 flex-flow: column wrap; | |
21 align-content: flex-start; | |
22 align-content: flex-end; | |
23 flex-direction: column-reverse; | |
align-content: center; | |
24 flex-flow:column-reverse wrap-reverse; | |
justify-content:center; | |
align-content:space-between; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment