如何在html中指向表格的第二个单元格以及如何在另一个表格旁边放置表格?

时间:2011-06-01 12:05:52

标签: html css dojo html-table

我写了这样的东西,想要给表格的第二个单元格。任何人都可以告诉我该怎么做?

<tr>
   <td><label for="prodnumber">Search string for product number</td>
   <td><input type="text" id="prodnumber" name="prodnumber" size="40" dojoType="dijit.form.ValidationTextBox"/></td>
   <td><input type="checkBox" id="prodnumber" name="prodnumber" dojoType="dijit.form.CheckBox"/></td>
</tr>

也请有人告诉我如何在另一张桌子旁边放一张桌子?

1 个答案:

答案 0 :(得分:0)

有关如何构建表的详细参考,请查看http://www.w3schools.com/tags/tag_table.asp。如果要将两个表放在一起,则必须使用float CSS属性。首先,您必须为表分配固定宽度,然后为两个表设置float属性。

<div>
<table style="width:100px; float:left;">
  <tr><td>First Column</td></tr>
  <tr><td>First Column</td></tr>
</table>
<table style="width:100px; float:left;">
  <tr><td>First Column</td></tr>
  <tr><td>First Column</td></tr>
</table>
<p style="clear:both;"></p>
</div>