CSS hide all images with matching SRC attribute
Use this CSS3 attribute selector:
img[src*="hideme"] {
display: none;
}
I'd prefer to use a hideme
class instead, but if you must hide an image based on its src
attribute, the above is fine.