With the following code:
Internet Explorer will insert a small space between the pictures, but if the code is changed to:
There is no space between the images when viewed by Internet Explorer.
So, having no line spaces in the source code fixes the display problem in IE, but makes my code very ugly and difficult to read. So can anyone tell me if there is a way to tell IE to not insert spacing between images evin if there is a new line in the source code?
- James.
My memory is not as good as it should be, and neither is my memory.
I have forgotten more than I can remember
Code:
<img src="picture1.gif">
<img src="picture2.gif">
Code:
<img src="picture1.gif"><img src="picture2.gif">
So, having no line spaces in the source code fixes the display problem in IE, but makes my code very ugly and difficult to read. So can anyone tell me if there is a way to tell IE to not insert spacing between images evin if there is a new line in the source code?
- James.
My memory is not as good as it should be, and neither is my memory.
I have forgotten more than I can remember