Simple answer for this one.
No.
You could do it via JavaScript if you want me to provide that solution?
However the CSS Hack
(However, there is a "hacky" way that I just thought of for CSS)..
Take this scenario... you want any <a> tags that do not have a href to be colored red.
For instance, you can assume that the only attributes that your will hold will be:
- alt
- title
- href
- target
etc
What you could do, is create a global rule for the anchor tag.
For instance
a {
color: red;
}
Then you just create a rule that will override this global rule after that declaration for each of the attributes that you expect it to have.
So you would have
a[href] {
color: blue;
}
Now you will know that any tag which is missing the href will be red.
** Edit **
Please don't edit this question when you edit it incorrectly.
The original question asked,
Can I make a rule that targets elements which omit a certain attribute?
And no you cannot! There is no cross browser, way of targetting / selecting elements which omit an attribute using CSS. Hence why I feel that the solution I proposed is a hack, because it goes against the grain to achieve what the question asked.