﻿
/*TABLE*/

tr:nth-of-type(odd) {
  background:lightblue;
}
tr:nth-of-type(even) {
  background:#c5c5c5;
}


/*LI*/

li { background: lightgreen; }
li:nth-child(odd) { background: #c5c5c5; }

