Proposal: parent selectors

This has probably been suggested before, but I didn't find it in a search.

Currently we can find child elements like so;

a > img

This would return any image contained in a link--but what if you need to
select any link containing an image? For that I propose an equivalent that
runs in the opposite direction;

img < a

The css interpreter would start by finding all 'img' elements, then it would
try to move one level up and, if an 'a' element is found, would return
successful and add that element to the list of elements to apply that
particular style to.

Received on Thursday, 21 January 2010 13:47:06 UTC