CSS3奇偶选择器

.search-form td:nth-child(odd){//奇

  width:100px;

  text-align:right;

}

.search-form td:nth-child(even){//偶

  width:100px;

  text-align:left;

}