TheSkeletonMan939
06-24-2016, 08:29 PM
Okay, so here's what I want my table to look like. The problem is that I can't figure out why there's such a huge gap at the beginning.
<table border="1">
<tr>
<tr><th>A</th><th>B</th><th>C</th>
</tr>
<td>a</td><td>b</td><td>v</td>
<tr>
<td>b</td><td>f</td><td>b</td>
</tr>
<tr>
<td>a</td><td>r</td><td>g</td>
</tr>
<tr>
<td>c</td><td>j</td><td>r</td>
</tr>
<tr>
<td>f</td><td>z</td><td>h</td>
</tr>
</table>
What am I doing wrong? Is there another way I can do it where there are lines separating the data instead of white space, that won't have a mysterious gap?
<table border="1">
<tr>
<tr><th>A</th><th>B</th><th>C</th>
</tr>
<td>a</td><td>b</td><td>v</td>
<tr>
<td>b</td><td>f</td><td>b</td>
</tr>
<tr>
<td>a</td><td>r</td><td>g</td>
</tr>
<tr>
<td>c</td><td>j</td><td>r</td>
</tr>
<tr>
<td>f</td><td>z</td><td>h</td>
</tr>
</table>
What am I doing wrong? Is there another way I can do it where there are lines separating the data instead of white space, that won't have a mysterious gap?