Ver Mensaje Individual
  #9 (permalink)  
Antiguo 30/05/2010, 09:13
ojitosjr
(Desactivado)
 
Fecha de Ingreso: mayo-2010
Mensajes: 61
Antigüedad: 13 años, 11 meses
Puntos: 1
Respuesta: como centrar las casillas donde se pone texto???

Cita:
Iniciado por Bier Ver Mensaje
Que editor utilizas para desarrollar?
Todos los programas tienen la opción para crear tablas.

Una página con tabla es la siguiente:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Documento sin título</title>
  5. </head>
  6.  
  7. <table width="400" border="0" cellspacing="0" cellpadding="0">
  8.   <tr>
  9.     <td>Columna 1</td>
  10.     <td>Columna 2</td>
  11.     <td>Columna 3</td>
  12.     <td>Columna 4</td>
  13.   </tr>
  14.   <tr>
  15.     <td>a</td>
  16.     <td>b</td>
  17.     <td>c</td>
  18.     <td>d</td>
  19.   </tr>
  20.   <tr>
  21.     <td>e</td>
  22.     <td>f</td>
  23.     <td>g</td>
  24.     <td>h</td>
  25.   </tr>
  26. </body>
  27. </html>
Hola Bier utiliso el HTML KIT y gracias una ves mas por tu enorme ayuda ermano tus respuestas me alegran la vida...