Vidyalelo
CSS · Q23

CSS Selectors and CSS Files

Programming · CSS · question 23

Q23

Which of the following selectors selects any tag with an id attribute set?

A.
E#id
B.
.class
C.
#id
Answer
D.
*

Answer: Option C

Solution

Answer: Option C
Solution:
Example:#test {color: green;}
/* makes a tag with id=’test’ green */