Skip to content

Commit

Permalink
fix: Correct a wrong answer for Q35
Browse files Browse the repository at this point in the history
Again, once we wante to evenly distribute the flex items we use space-arround value not space between. Check here: https://codepen.io/DinaTAKLIT/pen/KKzLOGJ

Please be careful you can always check the answers before deliver them. Some people take them as reference here :).

Thank you.
Best regards, 
Dina.
  • Loading branch information
DinaTaklit authored Sep 30, 2020
1 parent 9fef8f6 commit c26ef1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions css/css-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,10 +386,10 @@ h2 + p {
- Paragraph 2 will be blue. Paragraphs 2 and 3 will have a beige background.

#### Q35. When using flexbox, the "justify-content" property can be used to distribute the space between the flex items along the main axis. Which value should be used to evenly distribute the flex items within the container shown below?
- justify-content: space-around;
- justify-content: space-around; <<<<---Correct
- justify-content: center;
- justify-content: auto;
- justify-content: space-between; <<<<---Correct
- justify-content: space-between;

#### Q36. There are many advantages to using icon fonts. What is one of those advantages?
- Icon fonts increase accessibility.
Expand Down

0 comments on commit c26ef1f

Please sign in to comment.