用css控制<?php
echo "<table>";
echo "<tr><th>&nbsp</th>";
for($i=1;$i<=9;$i++)
{
echo "<th>$i</th>";
}
echo "</tr>";
for($i=1;$i<=9;$i++)
{
echo "<tr>";
echo "<th>$i</th>";
for($j=1;$j<=9;$j++)
{
echo '<td>'.$i .'X'. $j . '=' . $i*$j .'</td>';
}
echo "</tr>";
}
echo "</table>";
?><style type="text/css">
td {
font-family:"Times New Roman", Times, serif;
font-size:13px;
font-weight:normal;
}
th {
font-family:"Times New Roman", Times, serif;
font-size:16px;
font-weight:bold;
}
</style>