Q. What does 'padding: 50px 20px;' specifies?
β
Correct Answer: (D)
Both A & C
Explanation: In css, if padding is written as
padding:50px 20px;
It means first padding is from top and bottom and second digit is the padding from left and right.
If padding is defined as
padding:30px;
It means the element will get 30px padding from all four sides.