Skip to content

Commit

Permalink
Corrected the wrong answer of Q46 in CSS quiz (Ebazhanov#2679)
Browse files Browse the repository at this point in the history
top & bottom = 10px
right & left = 0px
we know that padding: top right bottom left;
then padding: 10px 0px 10px 0px is a valid way
padding: 10px 10px 0px 0px is the invalid one among these choices
  • Loading branch information
ahmed0saber authored Nov 25, 2021
1 parent bd095f1 commit 898e13a
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 @@ -568,10 +568,10 @@ Note: an alternative for Q7.

#### Q46. What is not a valid way of declaring a padding value of 10 pixels on the top and bottom, and 0 pixels on the left and right?

- [ ] padding: 10px 10px 0px 0px;
- [x] padding: 10px 10px 0px 0px;
- [ ] padding: 10px 0px;
- [ ] padding: 10px 0;
- [x] padding: 10px 0px 10px 0px;
- [ ] padding: 10px 0px 10px 0px;

#### Q47. Is there an error in this code? If so, find the best description of the problem

Expand Down

0 comments on commit 898e13a

Please sign in to comment.