Within the posting at http://www.smashingmagazine.com/2009/08/17/taming-advanced-css-selectors/
in the context of defining the rules of 'specificity' is stated:
For example, if you want to change the background color of all the div elements that are posts on your blog, you can use the an attribute selector that targets every div whose class attribute starts with “post-”:
div[class*="post"] { background-color: #333; }
This will match all the div elements whose class attribute contains the words “posts”, in any position.
...
My question goes to extending the above example with:
** ...change the background color of all the div elements that are posts on your blog except posts by anon users looks like... **
[whatzitlooklike?]
thx