css给表格每一列设置不同的样式

第一列
#id table tr td:first-child{

  overflow: visible;

}
第二列
table tr td:first-child+td{
color:#666;
}
第三列
table tr td:first-child+td+td{
color:#999;
}

记一下

原文地址:https://www.cnblogs.com/houzheng/p/9468362.html