I know for standard html attributes there are CSS selectors:
span[class="example"]
But I would like to know if there are selectors for CSS attributes, e.g.
span[background-image].
?
Update:
After reading some of the comments and answers so far, I better give a reason for this "strange" need. I would like to find all elements that have background-image set to anything other than undefined/empty, to apply style to them. The assumption is that I cannot control the existing inline/global styles, only add my own global style sheet.
