Using child selectors I can alter only the 'a' elements within the 'p' tag, but is there a similar way to change only those NOT within the 'p' tag? Adding an additional class isn't an option.
So using the fiddle as an example, I want a way to change the background color of 'Link 1', 'Link 2' and 'Link 3' other than using the universal '.links' class.
http://jsfiddle.net/pixeloco/Nuy9a/
<p>Lorem ipsum dolor <a href="#" class="links">click me</a></p>
<a href="#" class="links">Link 1</a>
<a href="#" class="links">Link 2</a>
<a href="#" class="links">Link 3</a>