Possible Duplicate:
Is there a CSS parent selector?
Given I have no way to change the HTML file, only CSS file.
How can I add some CSS to the parent DIV if I only know the direct child DIV ID?
For example:
<div>
<div id="child">
content
</div>
</div>
Anything like: #child:parent div
CSS rules?