Is it possible to create a CSS rule that would apply a style to any IMG tag with a SRC that contained a specific string, say \"hideme\"? For instance, if I had the following 3
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.
hideme
src