:nth-child(odd)(even)





.table tr:nth-child(odd) td {
    background: #f7f3eb;
}

для IE8

 (function($) {

if(jQuery.browser.version.substring(0, 2) == "8.") {
              $(".table tr:nth-child(odd) td").css('background','#f7f3eb');
         }

 })( jQuery );

Комментарии