折叠css文件中的子元素

时间:2015-12-10 10:24:29

标签: css optimization

我关注了css snipet:

 #div1 table, #div2 table, #div3 table  {
    color: white;
    font-family: monospace;
}

我可以将它折叠成下面的东西吗?

 #(div1|div2|div3) table    {
    color: white;
    font-family: monospace;
}

1 个答案:

答案 0 :(得分:0)

如果有人对此感兴趣,我发现了如何做到这一点:

[id$='-tabl'] table {
    color: white;
    font-family: monospace;
}

在我的情况下,所有DIV选择器的ID都以' -table'结尾,您可以使用正则表达式" * ^ $"匹配ID名称。 但是如果你有不同的名字,我在[id =' name1 || name2']这样的括号内找不到OR运算符的方法,所以不确定它是否可能。