我正在尝试将css类应用于位于<th class='euroth'></th>
或table.tablesorter-All-Activity
的所有table.tablesorter-Events
。
这就是我做的事情
table.tablesorter-All-Activity,.tablesorter-Events th.euroth {
width: 7px;
vertical-align:middle;
text-align: left;
z-index: 5;
}
结果,第一个表一直向左移动,第二个表很好地接受了这个样式。
为什么?
由于
答案 0 :(得分:3)
您必须将th.euroth
附加到第一个选择器:
.tablesorter-All-Activity th.euroth,
.tablesorter-Events th.euroth {
/* properties go here... */
}