tags:

views:

16

answers:

1

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">
            <table>
            <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..

A: 

Try floating the form.

graphicdivine