xiaohuli 2011-11-23
以下是几种解决方案
1、在单元格中加入一个空格。这样: <td> </td>
2、直接在table里这样写:<table border="0" cellspacing="0" style="border-collapse:collapse">
3、table { caption-side: top; width: auto; border-collapse: collapse; empty-cells: hide; }或者
table {width:100%;border-collapse: separate;empty-cells:show;} 不过,目前IE6.0持此属性,貌似只能在css2中使用。相应的脚本特性为emptyCells。
表格的现在还是较为常用的一种标签,但不是用来布局,常见处理、显示表格式数据。在HTML网页中,要想创建表格,就需要使用表格相关的标签。<table> <tr> <td>单元格内的文字</td> ...