具有相同伪 class 的多重选择器
Multiple selector with the same pseudo-class
有没有更简洁的方法来为多个选择器设置一个伪class?
例如:
th:first-of-type, td:first-of-type {
text-align: left;
}
不在 CSS 中,但如果您使用像 Sass 这样的预处理器,您可以像这样组织它。 (请注意,生成的 CSS 仍将编译为您的原始示例。)
th,
td {
&:first-of-type {
text-align: left;
}
}
有没有更简洁的方法来为多个选择器设置一个伪class?
例如:
th:first-of-type, td:first-of-type {
text-align: left;
}
不在 CSS 中,但如果您使用像 Sass 这样的预处理器,您可以像这样组织它。 (请注意,生成的 CSS 仍将编译为您的原始示例。)
th,
td {
&:first-of-type {
text-align: left;
}
}