Quote:
Originally Posted by DAMINK
Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="300px"><div align="left"><img src="/images/left.jpg"></div></td>
<td width="100%"> </td>
<td width="300px"><div align="right"><img src="/images/right.jpg"></div></td>
</tr>
</table>
|
This would be more appropriate.
This is a basic setup, depending on the situation and placement and surrounding elements attributes may need to be changed.
Code:
<div style="width:100%;">
<div style="float:left;">
<img src="./images/left.png" alt="" />
</div>
<div style="float:right;">
<img src="./images/right.png" alt="" />
</div>
</div>
example
http://jsfiddle.net/3ZVjm/