This is probably just an easy question but how do i apply a css rule to a compound section instead of just to a specific id for example i currently have:
var pillpic = document.getElementById('pill');
pillpic.style.left="300px";
pillpic.style.top="160px";
How do i change this to instead be a style applied to a compound rule? like for example this:
#wrapper #photoslider #appframe #clock img {}
which if i was doing it in a stylesheet i could use