Ver Mensaje Individual
  #14 (permalink)  
Antiguo 19/06/2012, 10:58
wapton
 
Fecha de Ingreso: junio-2012
Mensajes: 1
Antigüedad: 11 años, 10 meses
Puntos: 0
De acuerdo Respuesta: Imprimir listado con encabezado en cada hojaA4

Si funciona tu codigo css en firefox aca te dejo el codigo
gracias por tu aporte XD

solo necesitas agregarle mas filas a la tabla y saldra los encabezados en todas las paginas asi



si lo hacen en chrome seria genial... :)

Código HTML:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type='text/css' media='print'> 
	body { font-family: Arial;}
	@page{	margin: 0;}
	.hprint {
	position: fixed;
    height: 15mm;
    top: 0;
    left:0;
    font-family: serif;
    }
</style>
</head>

<body>
<table width='893' border='1' cellpadding='0' cellspacing='0' bordercolor='#000000'>
  <thead style="hprint">
  	<tr>
    <th width='62'><div align='center'>FECHA</div></th>
    <th width='229'><div align='center'>CLIENTE</div></th>
    <th width='66'><div align='center'>CAJERO</div></th>
    <th width='22'><div align='center'>T</div></th>
    <th width='42'><div align='center'>DOC</div></th>
    <th width='108'><div align='center'>DOCUMENTO</div></th>
    <th width='111'><div align='center'>FORMA PAGO</div></th>
    <th width='110'><div align='center'>VALOR VENTA</div></th>
    <th width='46'><div align='center'>IGV</div></th>
    <th width='75'><div align='center'>TOTAL</div></th>
    <tr>
  </thead>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
   .
   . n filas
   .
</table>
<div style='width:900px;'>
    <table  border='1px' cellpadding='0' cellspacing='0' bordercolor='#000000' style='width:350; margin-left:auto;margin-top:2px;'>
      <tr>
        <td width="101" style='font-size: 12px;'>TOTAL</td>
        <td width="111"  style='font-size: 12px;text-align:right;'>VEENTA</td>
        <td width="47"  style='font-size: 12px;text-align:right;'>IIGGVV</td>
        <td width="81"  style='font-size: 12px;text-align:right;'>TOOTAAL</td>
      </tr>
    </table>
</div>
</body> 

Última edición por wapton; 19/06/2012 a las 11:22