PDA

View Full Version : Problem with image location


szms
Tue 23rd Dec '03, 9:47am
I am working with images in HTML. I have two pictures and I am trying to put those adjacent without any bank space in between. I use the following code to do so but I am getting some white space in between of those two picture. How to deal with this problem.

<img src="Pic/my_pic.gif" alt="pic of mine" width="380" height="120" border = "0" >

<img src="Pic/House_Front.gif" alt="Front view of my house" width="220" height="120" border = "0">

DTingley
Tue 23rd Dec '03, 10:01am
Remove the line breaks between the images, browsers will interpret them as whitespace.

szms
Tue 23rd Dec '03, 10:13am
That works !! As my pictures are at the top right hand corner of the screen, there is a thin white space on the top of these two pictures. How do I eleminate that thin white space.