在tr之前,没有thead标签。
现在,对于表排序功能,我添加了thead标签,因为标题样式因默认的thead样式冲突而有所不同。我应该在加载窗口时重置thead样式。请告诉我如何重置thead样式并应该使用表格网格颜色按照以前的现有CSS。
<thead id="Header">
<tr class="header">
<th class="th-border" id="name">Name</th>
</tr>
</thead>
谢谢,
编辑:
以前没有thead标记,每当在我的页面表设计中添加thead标记时就会发生变化。我不想更改表格样式。请告诉我如何重置默认的thead样式?
最佳答案
只需在样式选择器前添加thead
喜欢
thead tr th{
color:blue;
font-weight:bold;
}
关于css - 如何重置thead的默认样式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23509459/