Can I style @done tasks with a particular tag differently than other @done tasks?

I’m trying to style tasks that have a special tag plus @done differently than other @done tasks. Is this possible?

Syntaxes I’ve tried that haven’t worked:

item[data-special][data-done]
item[data-special,data-done]
item[data-special].item[data-done]

Any ideas?

This seems to be working for me:

item[data-done][data-special] {
  color: red;
}

To color this text content red:

- Testing... @done @special

All be darn! Switching the tag order worked! Thanks so much!

I think it must have been some other character missing, tag order shouldn’t matter.

roger that