有没有办法简化这个:
div.container>table>tbody>tr>td h1,
div.container>table>tbody>tr>td h2,
div.container>table>tbody>tr>td h3{
color: red;
}
得到这样的东西?
div.container>table>tbody>tr>td (h1, h2, h3){
color: red;
}
提前谢谢。
答案 0 :(得分:1)
答案 1 :(得分:0)
逗号分隔是唯一的方法,
但是还有另一个选项可以选择所有父母的孩子:
div.container>table>tbody>tr>td>* {
color: red;
}
但是我不建议使用它。
答案 2 :(得分:0)
table h1,
table h2,
table h3 {
color: red;
}
查看小提琴