HTML Tables in Entries
Posted: Thu Sep 14, 2006 5:22 pm
Hey folks. Thanks ahead of time for any help you can provide.
I have a website about my Cleveland Browns (Go Browns!!), and while posting an injury report for this weeks game in an HTML table, I have run across a slight problem
I have it set up as the following:
After the table headings, there is a HUGE space before the table starts. Anyone know why this is and how to fix it?
Thanks again!
I have a website about my Cleveland Browns (Go Browns!!), and while posting an injury report for this weeks game in an HTML table, I have run across a slight problem
I have it set up as the following:
Code: Select all
<em><u>Cleveland Browns</u></em>
<table border="0">
<tr>
<td><b>Last Name</b></td>
<td><b>First Name</b></td>
<td><b>Position</b></td>
<td><b>Injury</b></td>
<td><b>Status</b></td>
</tr>
<tr>
<td>Dinkins</td>
<td>Darnell</td>
<td>TE</td>
<td>Hamstring</td>
<td>Out</td>
</tr>
<tr>
<td>Jurevicius</td>
<td>Joe</td>
<td>WR</td>
<td>Ribs</td>
<TD>Out</TD>
</TR>
<TR>
<TD>Eason</TD>
<TD>Nick</TD>
<TD>DE</TD>
<TD>Ankle</TD>
<TD>Doubtful</TD>
</TR>
<TR>
<TD>McCutcheon</TD>
<TD>Daylon</TD>
<TD>CB</TD>
<TD>Knee</TD>
<TD>Questionable</TD>
</TR>
<TR>
<TD>Russell</TD>
<TD>Brian</TD>
<TD>S</TD>
<TD>Elbow</TD>
<TD>Questionable</TD>
</TR>
</table>
<u><em>Cincinnati Bengals:</em></u>
<table border="0">
<tr>
<td><b>Last Name</b></td>
<td><b>First Name</b></td>
<td><b>Position</b></td>
<td><b>Injury</b></td>
<td><b>Status</b></td>
</tr>
<tr>
<td>Chapman</td>
<td>Antonio</td>
<td>WR</td>
<td>Groin</td>
<td>Out</td>
</tr>
<tr>
<td>Rucker</td>
<td>Frostee</td>
<td>DE</td>
<td>Shoulder</td>
<TD>Questionable</TD>
</TR>
<TR>
<TD>Adams</TD>
<TD>Sam</TD>
<TD>DT</TD>
<TD>Knee</TD>
<TD>Probable</TD>
</TR>
<TR>
<TD>Houshmandzadeh</TD>
<TD>T.J.</TD>
<TD>WR</TD>
<TD>Heel</TD>
<TD>Probable</TD>
</TR>
<TR>
<TD>Jones</TD>
<TD>Levi</TD>
<TD>T</TD>
<TD>Ankle</TD>
<TD>Probable</TD>
</TR>
<TR>
<TD>O'Neal</TD>
<TD>Deltha</TD>
<TD>CB</TD>
<TD>Knee</TD>
<TD>Probable</TD>
</TR>
</table>
<u><em>Key:</em></u>
Probable - 75% chance of playing
Questionable - 50% chance of playing
Doubtful - 25% chance of playing
Out - Will not playThanks again!