6

我对TH标签使用了通用规则,Table但它扰乱了每一件事。我将规则用作:

th
{
    color: #fff;
    background: #7d7e7d;
}

但现在我想为几个表指定 ID,这样它就不会影响其他表。我所做的是:

#id1,#id2  th
{
    color: #fff;
    background: #7d7e7d;
}

它也做了什么颜色传播。我如何完成我的任务?

4

1 回答 1

8

您需要指定th两次,因为逗号分隔整个选择器:

#id1 th, #id2 th
{
    color: #fff;
    background: #7d7e7d;
}

否则,您将选择整个#id1以及只是#id2 th.

于 2012-05-19T12:29:55.443 回答