Discussion :: Javascript - CS
-
What does the following code snippet mean?
#log>span
A.
Span child after log declaration |
B.
Specific span child of id greater than log |
C.
Span child less than log |
D.
Any span child of the element with id as log |
Answer : Option D
Explanation :
The above code snippet means that any span child of the element with id=”log”.
Be The First To Comment