View Full Version : HTML Code


Sadeyes417
11-17-2003, 06:00 AM
Hi,
I was wondering if there is a certain code to put a pic on the left or right side of a center pic?
I know how do do a center pic and than put another one right below it but i was wondering if there is a way to put something on each side of it.
Sadeyes417

Sheila
11-17-2003, 07:57 AM
You could always put them in a table:
http://www.lissaexplains.com/tables.shtml

COBOLdinosaur
11-18-2003, 10:33 PM
The css way would be to float it:
<div>
<img style="float:right" src="yourrightimage.gif">
<img src="yourotherimage.gif"
</div>