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:
<divalign="center"><imgsrc="a.png"><imgsrc="b.png"><imgsrc="c.png"><imgsrc="d.png"></div>
JSFIDDLE
Post a Comment for "How To Use No Margin Image Side Image In Html, Css"