如何使第二个div内联到第一个div。我需要flash swf出现在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>
答案 0 :(得分:1)
定义两个div的宽度并左右浮动
div1 {
float:left;
//define the width
}
div2{
float:right;
//define the width
}
答案 1 :(得分:0)
如果我理解正确,请注意显示不是继承的属性,因此如果你只是为表格指定display:inline,那也没关系。