FooTable插件存在一些问题,甚至认为它很长一段时间我认为我会在这里寻求帮助。
无论我尝试什么,我都无法让桌子在右侧打印更粗的边框。
我想要放入的唯一CSS如下。
table.footable tbody{
border: 2px solid #000;
}
table.footable thead tr:not(.footable-filtering){
border: 2px solid #000;
}
HTML如下。
<table id="<?php echo $tableid;?>" class="greyrow table no-border" data-
paging="true" data-paging-size="50" data-filtering="true" data-filter-
space="OR" data-filter-delay="20000">
<thead>
<tr>
<th>Date / Time</th>
<th>UL ID</th>
<th>Bench</th>
<th>Source</th>
</tr>
</thead>
<tbody>
if ($count >= 1) {
print '<tr>';
foreach ($row as $item) {
print '<td>'.($item !== null ? htmlentities($item, ENT_QUOTES) : '').'</td>';
}
print '</tr>';
}
}
print '</tbody></table><br>';]
任何帮助或建议都会非常感激。我只是不能让一行厚!由于某些原因,它没有输出所有的php标签,但它们就在那里。
编辑1:一般来说,它不允许我在FootTable表的右侧应用任何边框。