vote up 0 vote down star
<table>
    <tr>
        <td>Yes <input type="radio" value="yes" /></td>
    </tr>
    <tr>
        <td>No <input type="radio" value="no" /></td>
    </tr>
</table>

Some text

flag
1  
People on Stack Overflow appreciate reasonably worded questions. You might want to elaborate a little bit. – balpha Jul 21 at 13:54
1  
And now for the question! – pianoman Jul 21 at 13:54
I believe he wants it to appear on the same line of the table, not the line after it – Samuel Carrijo Jul 21 at 13:56
I second that, it's just too ambiguous to understand what he wants. – kuroir Jul 21 at 13:57
How do you manage to make things between brackets appear? – Samuel Carrijo Jul 21 at 13:57

2 Answers

vote up 1 vote down check
<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
link|flag
What an answer! – pianoman Jul 21 at 14:05
vote up -2 vote down

You can try this. You might want to check for browser compatibility though.

<html>
    <body>
        <table style="display: inline;">
        <tr>
            <td>Yes <input type="radio" value="yes" /></td>
        </tr>
        <tr>
            <td>No <input type="radio" value="no" /></td>
        </tr>
        </table>test
    </body>
</html>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.