Ver Mensaje Individual
  #9 (permalink)  
Antiguo 31/03/2008, 10:08
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Poner celdas de dos colores

Te recomiendo leas un libro basico de HTML, ya que tienes muchas dudas conceptuales de lo que es HTML.

Una tabla se genera asi:
Código HTML:
<table>
       <tr>
             <th>Encabezado 1</th>
             <th>Encabezado 2</th>
             <th>Encabezado 3</th>
        </tr>
        <tr>
              <td>Dato Fila 1, Celda 1</td>
              <td>Dato Fila 1, Celda 2</td>
              <td>Dato Fila 1, Celda 3</td>
         </tr>
         <tr>
              <td>Dato Fila 2, Celda 1</td>
              <td>Dato Fila 2, Celda 2</td>
              <td>Dato Fila 2, Celda 3</td>
          </tr>
</table> 
Saludos.