Align div inline
Posted
by
Rajeev
on Stack Overflow
See other posts from Stack Overflow
or by Rajeev
Published on 2010-12-27T09:29:35Z
Indexed on
2010/12/27
9:54 UTC
Read the original article
Hit count: 253
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>
© Stack Overflow or respective owner