I recommend using CSS to style your output after PHP prints the records to the table. For instance, look at the following code:
<html>
<head>
<title>My Page</title>
<style type="text/css">
td {
line-height: 15px;
color: #cccccc;
font:11px verdana, arial;
}
</style>
</head>
<body>
<table>
<tr>
<td>The Cell Text</td>
<td>The Second Cell Text</td>
</tr>
</table>
</body>
</html>This will change all text inside the "TD" element to a size 11px font (and change the line height etc..)