I made a basic box in html with the following code:
<TABLE BORDER="1">
<TR>
<TH>Position</TH>
<TH>86-87</TH>
<TH>97-98</TH>
<TH>08-09</TH>
</TR>
<TR>
<TD>Directors</TD>
<TD>204</TD>
<TD>288</TD>
<TD>518</TD>
</TR>
<TR>
<TD>Deans</TD>
<TD>48</TD>
<TD>56</TD>
<TD>72</TD>
</TR>
<TR>
<TD>Vice-presidents</TD>
<TD>18</TD>
<TD>13</TD>
<TD>28</TD>
</TR>
</TABLE>
when it shows up on the site, there is a huge gap in space between the text before it and the box. almost like there are many line breaks. does anyone know how to get rid of the extra space?
To show an example:
This is an article. Text. Text. Text. Text.
This is my box wayyyy down here. How do I get rid of that space?
<TABLE BORDER="1">
<TR>
<TH>Position</TH>
<TH>86-87</TH>
<TH>97-98</TH>
<TH>08-09</TH>
</TR>
<TR>
<TD>Directors</TD>
<TD>204</TD>
<TD>288</TD>
<TD>518</TD>
</TR>
<TR>
<TD>Deans</TD>
<TD>48</TD>
<TD>56</TD>
<TD>72</TD>
</TR>
<TR>
<TD>Vice-presidents</TD>
<TD>18</TD>
<TD>13</TD>
<TD>28</TD>
</TR>
</TABLE>
when it shows up on the site, there is a huge gap in space between the text before it and the box. almost like there are many line breaks. does anyone know how to get rid of the extra space?
To show an example:
This is an article. Text. Text. Text. Text.
This is my box wayyyy down here. How do I get rid of that space?