之前在tr之前没有thead标签。 现在,对于tablesorter功能,我添加了thead标签,因为标题样式不同,因为默认的thead样式冲突。我应该在加载窗口时重置thead样式。请告诉我如何重置thead样式并应该工作表格网格颜色按照以前的现有的css。
<thead id="Header">
<tr class="header">
<th class="th-border" id="name">Name</th>
</tr>
</thead>
谢谢,
编辑: 以前没有thead标签,只要在我的页面表设计中添加thead标签就是chnaging。我不想更改表格样式。请告诉我如何重置默认的thead样式?
答案 0 :(得分:0)
只需使用thead
添加样式选择器像
thead tr th{
color:blue;
font-weight:bold;
}