It's showing up low because your entry has new line characters in it when you wrote the table

For example, if I make a table all on one line (<table><tr><td>)it appears like this:
------------------------------------------------------------------------------
Row 1-1Row 1-2
Row 2-1Row 2-2
Row 3-1Row 3-2

------------------------------------------------------------------------------
But if I type out the table with lots of new line characters
(<table>
    <tr>
        <td>)
it makes it like this:
------------------------------------------------------------------------------













Row 1-1 Row 1-2
Row 2-1 Row 2-2
Row 3-1 Row 3-2

------------------------------------------------------------------------------

The moral of the story? Type out your tables all in one continuous line with no "returns" to get a nice looking table.