Align div inline
- by Rajeev
How to make the second div inline to the first div.I need the flash swf to appear next to the tds
<html>
<div style="display: inline">
<table style="table-layout:fixed;width:100%;">
    <tr>
                <td width ="20%">
                </td>
            </tr>
            <tr>
                <td width="20%">
                    1.Can you view the image?
                </td>
                <td width="20%">
                    1.Can you upload the image?
                </td>
        </tr>
        </table>
    </div>
            <div style="display: inline;">
                <object width="100" height="100">
                <embed src="image_tr.swf" width="250" height="250">
                </embed>
                </object>
            </div>