如何在表格分类器中应用css?

时间:2014-04-25 05:38:53

标签: html css

以前我的表格没有表格分类器。然后我的enter image description here表格标题颜色如下所示。

将表格分类器添加到表格网格后,由于添加了thead语句,标题颜色发生了变化。然后我试着把tr类风格给了thead但是没有用。请告诉我如何将旧样式应用到thead。

现在添加表格分类器后,我的标题颜色如下所示。 enter image description here

代码:

 <table class="ui"> 

    <thead>

    <tr class="ui-header">
    <th  id="DateSubmitted">Date Submitted</th>
    </tr> 

    </thead>

 <tbody> 

 <tr class="ui-content">
  <td><%: CreatedAt.ToShortDateString() %></td>
 </tr>

 </tbody>

 </table>

请告诉我如何将旧的颜色样式应用于thead。

由于

1 个答案:

答案 0 :(得分:0)

您必须覆盖表格分类器库提供的​​样式。在萤火虫中检查thead的元素。尝试禁用表格分类器库给出的样式。