Heim >Web-Frontend >HTML-Tutorial >按钮控件_html/css_WEB-ITnose
我编写了个代码,包含按钮控件和表格,但是为什么按钮控件不在表格范围内,而且正好按钮的最左侧在表格的最右侧~
求大侠高手指教,分不多!希望不吝赐教
code呢?
制 | 制 | 负 | 类 | 预 | |
---|---|---|---|---|---|
公 | 该td> |
万芳 | 修订 | 2013-01-12 |
额,没明白,是不是想要这样的效果呢?
<table border="1" width="500"> <thead> <tr> <th>选择</th> <th>姓名</th> <th>版本</th> <th>日期</th> </tr> </thead> <tbody> <tr> <td> <input type="checkbox" /><a href="#">公</a> </td> <td>姓名</td> <td>1.1</td> <td>2012-09-24</td> </tr> <tr> <td colspan="4" style="text-align:right"> <input type="button" value="导出" /> </td> </tr> </tbody></table>
因为你根本就没把button写到table中去 所以按钮控件不在表格范围内~