Aligning a formtable with button

Posted by Hulk on Stack Overflow See other posts from Stack Overflow or by Hulk
Published on 2010-04-08T09:36:03Z Indexed on 2010/04/08 9:43 UTC
Read the original article Hit count: 322

Filed under:
|
|
|

In the below code how to align the the print button next to the table and not below or above it.

<div id="content">
    <form action="Empform" method="post" name="emp">
            <tr><th>Name</t></tr>
            <tr><td></td></tr>
        </table>
        <br>
        <br>
        <label>Comments: </label>
        <br>
        <textarea rows=10 cols=75></textarea>
    </form>
    <input type="button" value="Copy" id="print" onclick="javascript:copy();" style="display:inline;/>
    <br>
</div>

Thanks..

© Stack Overflow or respective owner

Related posts about html

Related posts about css