आप सभी अनुच्छेद तत्वों को 'ग्रे' रंग में कैसे बनाएंगे?
How will you make all paragraph elements 'GREY' in color ?
A)
B)
C)
D)
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;}.