आप सभी अनुच्छेद तत्वों को 'ग्रे' रंग में कैसे बनाएंगे?
How will you make all paragraph elements 'GREY' in color ?
A
p.all {color: grey;}
B
p.all {color: #990000;}
C
all.p {color: #998877;}
D
p {color: grey;}
Explanation
To make all paragraph () elements grey in color, you would use the following CSS rule:
p { color: grey; }
This targets all elements and changes their text color to grey.
So, the correct answer is:
(D) p {color: grey;}.
Correct Answer: D) p {color: grey;}