How To Use No Margin Image Side Image In Html, Css
I want to show this four images without any margin. How to do this? Each A,B,C,D look like one image. A B C D

Solution 1:
CSS:
img
{
margin:0;
display:block
}
HTML:
<div align="center">
<img src="a.png">
<img src="b.png">
<img src="c.png">
<img src="d.png">
</div>
Post a Comment for "How To Use No Margin Image Side Image In Html, Css"