If I have the following HTML:
<div class='row'>
<div class='cell'>
<span class='image'> </span>
Image Cell
</div>
<div class='cell'>
Regular Cell
</div>
</div>
Can I uniquely select the div that contains the span element, as opposed to the div cell that does not have the span element as its first child? This needs to be done without using JavaScript.