Advertisements
Advertisements
Question
How do you insert padding so that it is?
10 pixels at the top
15 pixels at the bottom
5 pixels at the right
10 pixels to the leftOptions
padding:10px 15px 5px 10px;padding:15px 5px 10px 10px;padding:10px 5px 10px 15px;padding:10px 5px 15px 10px;
MCQ
Advertisements
Solution
padding:10px 5px 15px 10px;
Explanation:
CSS padding shorthand maps values using the TRBL (Clockwise) rule:
- Top = 10px
- Right = 5px
- Bottom = 15px
- Left = 10px
shaalaa.com
Is there an error in this question or solution?
