微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

是有办法从css类中排除一个标签

我有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()在同一个级别。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。