也许这是一件愚蠢的事情,但我看不出来。有什么问题吗?
<html>
<body>
<form action="search" method="get">
    <input>
    <input name="action" value="search" type="submit">
</form>
<table border="1">
    <thead>
    <th>
        <td>Name</td>
    </th>
    </thead>
    <tbody>
    <tr>
        <td>Smith        </td>
    </tr>
    <tr>
        <td>Smith2        </td>
        </tr>
    </tbody>
</table>
</body>
</html>“Smith”不会显示在"Name“单元格下。
发布于 2009-10-03 21:00:02
这里有一篇关于表格的精彩文章,解释了http://woork.blogspot.com/2009/09/rediscovering-html-tables.html必须看到的一切:)
https://stackoverflow.com/questions/1514814
复制相似问题