Screenshot of List Code The borders below are from an internal style sheet that can be used to test the various selectors. Identify the list items (animals) that the following CSS selectors would select.

a) #nav li
selects all animals

b) ul li
selects all animals

c) #nav > li
dog, frog

d) ul > li
selects all animals

e) #nav ul li
cat, rat, ant, gnat

f) #nav > ul li
selects nothing

g) #nav > li > ul > li
cat, rat

h) #nav ul ul li
ant, gnat

i) #nav li li li
ant, gnat

j) #nav > li > li li
selects nothing

k) ul li li
cat, rat, ant, gnat

l) ul > ul li
selects nothing

m) ul ul li
cat, rat, ant, gnat