Display text on same line as HTML Table?

css, html, html-table

Solution

<table style="width: 250px;float: left;">
    <tr>
        <td>Yes <input type="radio" value="yes" /></td>
    </tr>
    <tr>
        <td>No <input type="radio" value="no" /></td>
    </tr>
</table>

Some text

Problem

``` <table> <tr> <td>Yes <input type="radio" value="yes" /></td> </tr> <tr> <td>No <input type="radio" value="no" /></td> </tr> </table> Test Text ``` Normally, the text 'Test Text' will be pushed to the next line. Is it possible to keep the 'Test Text' text on the same line as the table?

Original source