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:
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
Post a Comment