I need to make the images show up side by side horizontally in the div. How can I do that?
HTML:
You could also use css properties display:inline-block or float : left to achieve this.
HTML Code
CSS Code
div img{ display: inline-block;}
or
div img{ display: block;float: left;margin-right: 5px;}