Tengo una etiqueta DIV, que por debajo tiene un xsl:for-each, el caso es que cuando hay pocos registros la pantalla queda bien, pero cuando tengo más de 15 registros, me baja la pantalla varias lineas, incorporo un trocito del software por si os ayuda a comprenderlo.
Código PHP:
<center>
<font face="arial" size="1" color="darkblue">Últimos documentos generados desde la empresa
<b><xsl:value-of select="//registro_principal/registro[4]/empresa/dato[1]/empresa_nombre"/></b></font>
</center>
<table height="180" width="100%" border="0">
<tr valign="top" height="180">
<td align="center" valign="top">
<div id="empresa_2" style="OVERFLOW-X: hidden; OVERFLOW: auto; HEIGHT: 150px">
<table align="center" width="90%" bgcolor="Beige" cellpadding="0" cellspacing="0" border="0">
<tr valign="top" bgcolor="darkblue">
<td width="5%" align="center"><font face="arial" size="1" color="white"><b>$$</b></font></td>
<td width="10%"><font face="arial" size="1" color="white"><b>Fecha</b></font></td>
<td width="10%"><font face="arial" size="1" color="white"><b>Tipo</b></font></td>
<td width="50%"><font face="arial" size="1" color="white"><b>Descripción</b></font></td>
<td width="10%"><font face="arial" size="1" color="white"><b>I.V.A.</b></font></td>
<td width="10%" align="right"><font face="arial" size="1" color="white"><b>Importe</b></font></td>
<td width="5%"></td>
</tr>
<xsl:for-each select="//registro_principal/registro[4]/empresa/dato[1]/facturas/dato">
<xsl:sort select="intercompani_tipo_factura"/>
<xsl:sort select="fecha_formateada"/>
<tr valign="top" bgcolor="{color}">
<td width="5%" align="center"><input type="checkbox" name="txt_codigo" value="{intercompani_intercompani}"/></td>
<!--<td width="10%"><font face="arial" size="1" color="black"><xsl:value-of select="substring(intercompani_fecha,7,2)"/>/<xsl:value-of select="substring(intercompani_fecha,5,2)"/>/<xsl:value-of select="substring(intercompani_fecha,1,4)"/></font></td>-->
<td width="10%"><font face="arial" size="1" color="black"><xsl:value-of select="fecha_formateada"/></font></td>
<td width="10%"><font face="arial" size="1" color="black"><xsl:value-of select="intercompani_tipo_factura"/></font></td>
<td width="50%"><font face="arial" size="1" color="black"><xsl:value-of select="intercompani_descripcion"/></font></td>
<td width="10%"><font face="arial" size="1" color="black"><xsl:value-of select="tipo_iva_descripcion"/></font></td>
<td width="10%" align="right"><font face="arial" size="1" color="black"><xsl:value-of select="format-number(intercompani_total, '###.##0,00', 'european')"/></font></td>
<td>
<a href="javascript:document.fr_principal.txt_intercompani.value='{intercompani_intercompani}';document.fr_principal.txt_accion.value='BORRAR';document.fr_principal.submit();" style="text-decoration:none">
<img src="images/goma_de_borrar.gif" height="17" border="0"/>
</a>
</td>
</tr>
</xsl:for-each>
</table>
</div>
</td>
</tr>
</table>
Os agradecería mucho vuestra ayuda.
Un saludo.