Firstly, it should be class="mystyle" not style="mystyle".
Secondly, since the <img> tag is the same element that has the mystyle class, your CSS is wrong.
The CSS you've defined is for an element called mystyle which is inside of another element called img.
How you actually want to define the style is img.mystyle.
So your CSS code would look like this:
img.mystyle {
border:0px;
}
and your HTML would look like this:
<img src="img" class="mystyle" />
To be honest though, I'd prefer to have this apply to all images, so I wouldn't bother with the mystyle bit at all; just have a stylesheet entry for img on its own to remove any borders. If you need to add one to a specific image later, you can always override it, but I'd rather have it off by default.
As for the mystery as to how the original code worked in Chrome/Safari but not Firefox/IE: I suspect that Chrome/Safari have dropped the default border. So it's not so much that they worked for you, it's more that those browsers don't even need you to do this, whereas Firefox and IE are still using the old default style for image links that defaults to giving them a border so they do need the override.