How to refer to children elements in CSS

I'm not sure if this is even possible but I thought I'd ask. Instead of giving ids to all of my elements under a parent, I'd like to know if in CSS, I can refer to each of them without giving them an id.If I have:\[code\] <td id="bracket-wrapper-lt"> <div id="bracket-top-lt"></div> <div id="bracket-middle-lt"></div> <div id="bracket-bottom-lt"></div> </td>\[/code\]Can I access the three divs under \[code\]bracket-wrapper-lt\[/code\] giving me the following\[code\] <td id="bracket-wrapper-lt"> <div></div> <div></div> <div></div> </td>\[/code\]
 
Back
Top