Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to remove space between images?

Status
Not open for further replies.

J741

Technical User
Jul 3, 2001
528
CA
With the following code:
Code:
<img src="picture1.gif">
<img src="picture2.gif">
Internet Explorer will insert a small space between the pictures, but if the code is changed to:
Code:
<img src="picture1.gif"><img src="picture2.gif">
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top