Which of the following selects all elements with the class footer that are inside of divs?

A. div {
.footer {
...
}
}

B. .footer div {
...
}

C. div > .footer {
...
}

D. div .footer {
...
}

1 answer

D. div .footer {}