Vidyalelo
CSS · Q42

CSS3 Fundamentals

Programming · CSS · question 42

Q42

Which of the following selector is used to select elements that are read-only. When applied to form elements, this would select fields with the readonly attribute set?

A.
:valid
B.
:target
C.
:read-only
Answer
D.
:required

Answer: Option C

Solution

Answer: Option C
Solution:
Explanation: input:read-only {color: gray;}
/* put all read only fields in gray */