你如何在表格行的中间放置div或span?

时间:2012-12-15 16:43:32

标签: html html-table

每次渲染HTML时,div都会被推出表格。

获得与div相同的行为的正确方法是什么?我试图使用jQuery隐藏表的块。

1 个答案:

答案 0 :(得分:0)

请遵循以下格式:

<table width="200" border="1">
<tr id="1">
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr id="2">
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
 </tr>
<DIV>EXPANDING UPON ROW 2 AT BLOCK LEVEL But UN-effecting ROW 1 AND 3</DIV>
<tr id="3">
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>