🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

आप सभी अनुच्छेद तत्वों को 'ग्रे' रंग में कैसे बनाएंगे?

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;}

Latest Updates