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.
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.