我目前正在使用这个 CSS 选择器:
td:nth-of-type(2),td:nth-of-type(3),
td:nth-of-type(4),td:nth-of-type(5),
td:nth-of-type(6),td:nth-of-type(7),
td:nth-of-type(8),td:nth-of-type(9),
td:nth-of-type(10){
/* CSS rules... */
}
我想将规则应用于第 2-10 列,我宁愿说如果它不是第 1 列{}
有什么更好的方法可以做到这一点,是否可以减少代码以变得更具可读性和简洁性?
逻辑想是:
if column number is not 1 then
do some code
else
do something else