I have two images next to each other. When I have just image01, I do not get an underscore next to it. When I put image02 next to it, IE inserts a space with an underscore between the images.
I am using a :link pseudo-class with
This does not happen in Firefox - I get neither the space between the images nor the underscore. It happens only in IE.
I am circumventing this by putting a separate href for each image instead of a single href covering both images. So I do get rid of the underscore. But IE is still putting in the space between the images.
Is there way to make IE work right so that:
(1) I don't get the space between the images
(2) I don't need to code the href twice to eliminate the underscore in the space.
Thanks
Code:
<A href="Music/Song01.wav">
<IMG src="images/Image02.jpg" border="0" vspace="50">
<IMG src="images/Image01.jpg" border="0"></a>
Code:
TEXT-DECORATION: none; text-underline: none;
I am circumventing this by putting a separate href for each image instead of a single href covering both images. So I do get rid of the underscore. But IE is still putting in the space between the images.
Is there way to make IE work right so that:
(1) I don't get the space between the images
(2) I don't need to code the href twice to eliminate the underscore in the space.
Thanks