我做了一个网站。在整个开发和测试阶段的20多天里,它运行良好,在此期间我一直在firefox中查看页面,它们都很好。但是今天我突然遇到了firefox的问题。表格数据没有居中,边框也没有像以前那样圆润。但在谷歌浏览器中都很好。你可以查看截图: Mozilla Firefox(以前不是这样!) 谷歌浏览器 请告诉我如何解决它..我已经清除了 Firefox 的所有缓存和会话,但仍然是一样的
UPD 好的,所以我也提供了代码:
表格的 PHP 代码(仅片段)
$result = mysql_query("SELECT username,rating,contests,rank from users order by (rating) desc limit 10");
echo '<table id="problems">
<thead><tr>
<th colspan="3" align="center" ><font color="red" ><h2>Top Rated</h2></font></th>
</tr></thead>
<tr>
<th>#</th>
<th>Username</th>
<th >Rating </th>
</tr>';
while($row = mysql_fetch_array($result))
{
require_once("color_gen.php");
require_once("rankings.php");
ranker_rater();
$color=ColorGen($row['rating'],$row['contests']);
$uname=$row['username'];
$rank=$row['rank'];
echo "<tr>";
echo "<td>" . $rank. "</td>";
echo '<td><a href="profile.php?search=' . $uname . '" class="a"><font color="'.$color.'">'.$uname.'</font></a></td>';
echo "<td>" . $row['rating'] . "</td>";
echo "</tr>";
}
echo "</table>";
以及对应的CSS
#problems
{
text-align:centre;
border:solid;
border-width:2px;
border-color:#CCC;
width : 100%;
}
#problems th,td
{
padding: 4px;
font-weight: normal;
border:solid;
border-width:1px;
border-color:#CCC;
font-size: 15px;
color: #039;
//background: #b9c9fe;
text-align:center;
}