1

我有一个包含 CSS 的 HTML 页面。CSS 适用于页面的某些部分,但不适用于我讨论的部分。我想要背景颜色并进行一些其他样式更改,但它们没有实现。

这是CSS:

table.tablesorter thead tr, table.tablesorter thead tr th, table.tablesorter tfoot tr th { background-color: #e6EEEE; font-size: 8pt; padding: 4px; }
table.tablesorter thead tr .header { cursor: pointer; }
table.tablesorter tbody td { padding: 6px; vertical-align: top; border-bottom: dashed 1px #333; }
table.tablesorter tbody tr.odd td { background-color: #F0F0F6; }
table.tablesorter thead tr .headerSortUp { background-image: url(images/asc.gif) no-repeat; }
table.tablesorter thead tr .headerSortDown { background-image: url(images/desc.gif) no-repeat; }
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp { background-color: #8dbdd8; }

这是HTML:

    <table>
    <thead>
    <tr>
    <th>Pilot ID</th>
    <th>Rank</th>
    <th>Total Flights</th>
    <th>Total Hours</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td align="center"><?php echo $pilotcode; ?></td>
    <td align="center"><?php echo $userinfo->rank;?></td>
    <?php
    if($report)
    { ?>
        <!--<td><strong>Latest Flight: </strong><a 
                href="<?php echo url('pireps/view/'.$report->pirepid); ?>">
                <?php echo $report->code . $report->flightnum; ?></a>
        </td>-->
    <?php
    }
    ?>
    <td align="center"><?php echo $userinfo->totalflights?></td>
    <td align="center"><?php echo $userinfo->totalhours; ?></td>
    </tr>
    </table>

所有这些结果都是粗体文本,下面是纯文本。

在此处输入图像描述

4

1 回答 1

5

您的 CSS 正在将样式应用于具有类 tablesorter 的表。只需将其添加到表格标签

<table class='tablesorter'>
table content
</table>

演示

于 2013-08-07T20:15:21.883 回答