I'm trying to find a CSS selector that can help me distinguish between the <var>
tags in these 2 different usages:
<p><var>Foo</var></p>
And
<p>Some text <var>Foo</var> and more text</p>
Basically if a var has a sibling that is a text node I need to style it differently. Suggestions?