LA raz�n por la que puede que no te funcione, es porque en mi opini�n y por las veces que lo he utilizado, la sintaxis del <colgroup> es :
<colgroup><col><col>.....</colgroup> Las <col> son la cantidad de <td> que tengas, en tu caso: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Documento sin título</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> <!-- .dere { text-align: right; } .izq{ text-align: left; } --> </style> </head> <body> <table border="1" width="80%"> <COLGROUP><col class=�dere� /> <col class=�dere� /><col class=�izq� /> <col class=�dere� /></COLGROUP> <tr> <td>TEST1</td> <td>TEST2</td> <td>TEST3</td> <td>TEST4</td> </tr> </table> </body> </html> Zuri Menendez Cayrols Tanta Tecnolog�a y Comunicaci�n Grupo Onetec c/ Juli�n Camarillo 26 1� Of. 2 28037 Madrid Tel.: 91.440.10.40 Fax: 91.304.91.24 www.tantacom.com www.grupoonetec.com "Este correo electr�nico y, en su caso, cualquier fichero anexo al mismo, pueden contener informaci�n de car�cter confidencial exclusivamente dirigida a la persona o entidad a la que se le env�a. Queda prohibido cualquier uso indebido, revisi�n, retransmisi�n o diseminaci�n del contenido por personas o entidades ajenas al destinatario. Si recibe usted este correo por error, le rogamos que nos lo comunique por la misma v�a al remitente y proceda a borrar este material de todo ordenador. Gracias." ___________________________________________________ "The information in this e-mail and in any attachments is confidential and solely for the attention and use of the named addressee(s). You are hereby notified that any distribution, copy or dissemination of this communication is prohibited without the prior written consent of the sender. If you received this in error and are not the formal receiver of this message please destroy it without making any digital or physical copy and inform the sender by e-mail of the reception of the present message. Thank you" -----Mensaje original----- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de nacho saski Enviado el: jueves, 21 de abril de 2005 10:29 Para: Ovillo, la lista de CSS en castellano Asunto: [Ovillo] colgroup hola! estoy haciendo pruebas para utilizar <colgroup> para marcar los atributos de unas columnas de tabla un poco peculiares. Empiezo por una prueba trivial de alineamiento, pero me encuentro con que funciona en IE, pero no en Firefox...! este es el c�digo: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Documento sin título</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> <!-- .dere { text-align: right; } .izq{ text-align: left; } --> </style> </head> <body> <table border="1" width="80%"> <COLGROUP class="dere"> <COLGROUP class="izq"> <COLGROUP class="dere"> <COLGROUP class="izq"> <tr> <td>TEST1</td> <td>TEST2</td> <td>TEST3</td> <td>TEST4</td> </tr> </table> </body> </html> _______________________________________________ Lista de distribuci�n Ovillo Para escribir a la lista, envia un correo a [email protected] Puedes modificar tus datos o desuscribirte en la siguiente direcci�n: http://ovillo.org/mailman/listinfo/ovillo _______________________________________________ Lista de distribuci�n Ovillo Para escribir a la lista, envia un correo a [email protected] Puedes modificar tus datos o desuscribirte en la siguiente direcci�n: http://ovillo.org/mailman/listinfo/ovillo
