html - vertical spacing between images -


i cut 1 image 3 equal images , have in html code this:

                        <img src="images/disclosure2_01.jpg" alt="disclosure">                         <img src="images/disclosure2_02.gif" alt="disclosure2">                         <img src="images/disclosure2_03.gif" alt="disclosure3"> 

the images render @ website this: enter image description here

i want know if possible remove vertical spacing between images , images 1 whole picture. in advance help.

try this. remove lines between them.

<img src="images/disclosure2_01.jpg" alt="disclosure"><img src="images/disclosure2_02.gif" alt="disclosure2"><img src="images/disclosure2_03.gif" alt="disclosure3"> 

or tinker css.

img { padding: 0; margin: 0; }  

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -