我有css的所有tr标签的表。
所以在我的html我没有样式的tr标签。然而,对于我的表中的一个TR标签,我不想应用TR是通用的所有表。有没有办法排除这个TR?
.statisticsTable { border:2px solid #990000; width:100%; } .statisticsTable tr { font-weight : bold; font-size : 9pt; font-family : Arial,Helvetica,sans-serif,Verdana,Geneva; color: #ffffff; background-color:#990000; } <table class="statisticsTable"> <tr><td colspan="7" class="tableHeaderText">HUB Statistics</td></tr> <tr> <th colspan="2">HUB</th> <th >House Houlds Evaluated</th> <th >Total Debt Owed</th> </tr> <tr class="<s:if test="#status.even">even</s:if><s:else>odd</s:else>"> <td rowspan=3 valign=top>213-65-6425</td> <td >All</td> <td >t1</td> <td >t2</td>
在上面< tr>具有’偶’或’奇’的类,我不想要这< tr&有.statisticsTable tr属性。这可能吗? 主要想想我想避免的是background-color:#990000;和颜色:#ffffff;
解决方法
CSS级联,这意味着您可以覆盖先前定义的属性的值。
你会做:
.statisticsTable tr.even,.statisticsTable tr.odd { font-weight: normal; font-size: DEFAULT; /* what ever your default is */ font-family: DEFAULT; /* what ever your default is */ /* I would use the font shorthand property */ color: DEFAULT; background: DEFAULT; }
如果要使用CSS3,可以使用:not仅将以下样式应用于没有偶数或奇数类的TR元素:
.statisticsTable tr:not(.even):not(.odd) { font: bold 9pt Arial,Geneva; color: #fff; background:#990000; }
编辑:不是(.even,.odd)是无效的语法,因此不会工作(至少不是在Chrome)正确的语法是:not(selector),但是你可以做:not(selector1):not(selector2)这些not()在同一个级别。