I need help identifying a CSS selector that can differentiate between the <var>
tags in these two distinct situations:
<p><var>Foo</var></p>
And
<p>Some text <var>Foo</var> and more text</p>
Specifically, I am looking for a way to style the var differently if it is adjacent to a text node. Any recommendations?