I have and I need to select all pre and div elements that are children of #mydiv. I coul
and I need to select all pre and div elements that are children of #mydiv. I coul
pre
div
#mydiv
I coul
You'll have to reference #mydiv twice...
#mydiv > pre, #mydiv > div
I removed the extraneous div element selector as the ID is specific enough.