Possible Duplicate:
Is there a CSS parent selector?
I have this code :
<div class="main_parent">
    <a href="www.google.it">
        <img src="/path/image.jpg" alt="image" />
    </a>
</div>
and I'd like to set the attribute text-decoration:none; to the link that contains an image.
So, somethings like :
.main_parent img < a
{
    text-decoration:none;
}
but of course it doesnt works. How can I do it with CSS 2?
 
     
     
     
     
    