Problem with image location

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
szms
Forum Contributor
Posts: 101
Joined: Thu Jun 26, 2003 12:23 pm

Problem with image location

Post by szms »

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">
Draco_03
Forum Regular
Posts: 577
Joined: Fri Aug 15, 2003 12:25 pm
Location: Montreal, Canada

Post by Draco_03 »

in html try putitng them like that

Code: Select all

<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">
notice that i didn't put any white spaces between the images in my source code
Post Reply