This works, if you don't mind doing things slightly backwards and you need it to work in browsers that don't support :not:
div[data-pid] {
color: green;
}
div[data-pid=""] {
color: inherit;
}
That will make all the divs with non-empty data-pids green.
Fiddle here: http://jsfiddle.net/ZuSRM/