标签: css css-selectors pseudo-element pseudo-class
是否有更简洁的方法为多个选择器设置一个伪类?
例如:
th:first-of-type, td:first-of-type { text-align: left; }
答案 0 :(得分:0)
不在CSS中,但如果您使用像Sass这样的预处理器,您可以将它组织起来。 (请注意,生成的CSS仍将编译为原始示例。)
th, td { &:first-of-type { text-align: left; } }