表格列下方的文本框

时间:2015-11-03 02:47:15

标签: html css html5 css3

是否可以在6个圆柱表中添加文本框?

它看起来像这样



<table id="table" class="table">

  <thead id="search-result">

    <tr>
      <th>table 1</th>
      <th>table 2</th>
      <th>table 3</th>
      <th>table 4</th>
      <th>table 5</th>
      <th>table 6</th>
    </tr>

  </thead>

  <tbody id="result">

    <tr>
      <td>content 1</td>
      <td>content 2</td>
      <td>content 3</td>
      <td>content 4</td>
      <td>content 5</td>
      <td>content 6</td>
    </tr>

  </tbody>
</table>
&#13;
&#13;
&#13;

在内容标记下会有100%的文本框。那可能吗?

1 个答案:

答案 0 :(得分:0)

这个问题已得到解答。感谢Alvaro Montoro先生。

我刚刚添加了一个colspan="6"的新行,其中包含了文本框。