Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/07/2014, 10:17
Avatar de MaNuX0218
MaNuX0218
 
Fecha de Ingreso: marzo-2014
Mensajes: 787
Antigüedad: 10 años, 1 mes
Puntos: 67
Respuesta: Color celdas automaticos

Lo siento por no poner la solución, lo solucione de está manera:

Código CSS:
Ver original
  1. .table tbody tr:nth-child(odd) td {
  2.     background:red;
  3. }
  4.  
  5. .table tbody tr:nth-child(even) td {
  6.     background:blue;
  7. }

Saludos.