What is :first-child pseudo-class?
What will be an ideal response?
:first-child pseudo-class: Selects only the first child of an element, as opposed to all the children of an element.
Computer Science & Information Technology
You might also like to view...
Thunderbolt version 1 supports speeds up to what?
A. 5 Gbps B. 10 Gbps C. 15 Gbps D. 20 Gbps
Computer Science & Information Technology
What is the value of result after the following C++ statements execute?
int a, b, c, d, result; a = 4; b = 12; c = 37; d = 51; result = d % a * c + a % b + a; a. 119 b. 51 c. 127 d. 59
Computer Science & Information Technology