Hola estoy haciendo una factura en html, tengo mi imagen de fondo y mis datos a facturar, el problema es que 'apartentemente' le asigno un tamaño en especifico para poner lo productos q deseo facturar, pero resulta q si pongo 10 productos las filas de abajo que son de total e iva se bajan demasiado saliendose del cuadro. Y por el contrario solo si facturo un producto se colocan muy arriba los totales.
Me podrian ayudar q como fijas la altura de mi fila para q no se muevan mis datos..aqui les dejo mi codigo de como lo estoy haciendo.
De antemano agredezco su ayuda
Código:
<table height="804" border="0" background="factura.jpg" class="Estilo3">
<tr>
<td height="118" colspan="5"> </td>
</tr>
<tr>
<td height="122" colspan="5"><table width="168" height="24" border="0" align="center">
<tr>
<td width="162" height="20" valign="bottom"><?php echo $fecha; ?></td>
</tr>
</table>
<table width="334" border="0" align="center">
<tr>
<td width="35" height="20"><?php echo $factdia; ?></td>
<td width="134"><?php echo $factmes; ?></td>
<td width="151"><?php echo $factano; ?></td>
</tr>
</table>
<table width="508" border="0">
<tr>
<td width="15%" height="20"> </td>
<td width="85%"><?php echo $factname; ?></td>
</tr>
</table>
<table width="508" height="16%" border="0">
<tr valign="top">
<td width="15%" height="20"> </td>
<td width="85%"><?php echo $factdir; ?></td>
</tr>
</table>
<table width="508" height="24" border="0">
<tr>
<td width="15%" height="20" valign="top"> </td>
<td width="55%" valign="top"><?php echo $factrfc; ?></td>
<td width="35%" valign="top"> <?php echo $factcp; ?></td>
</tr>
</table> </td>
</tr>
<tr>
<td height="44"> </td>
</tr>
<tr>
<td height="70" colspan="5"><table width="132" border="0" align="right" class="Estilo3">
<tr>
<td width="91" ><div align="left"><?php echo $subtotal; ?></div></td>
</tr>
<tr>
<td ><div align="left"><?php echo $ivafinal; ?></div></td>
</tr>
<tr>
<td ><div align="left"><?php echo $preciofinal; ?></div></td>
</tr>
</table></td>
</tr>
<tr>
<td height="33" colspan="5"></td>
</tr>
</table>