如何将Row拆分为多个列?

时间:2015-12-10 08:52:34

标签: html asp.net

如何在html ????

中将单行拆分为多个列
  | Status |            Data           |
  |  A     |             1             |
  |  B     |             2             |
  |  C     |             3             |
  |  D     |             4             |
  |            Add New Row             |
  | Daily  | Weekly | Monthly | Yearly |
  |   2    |    4   |    2    |   6    |

我怎样才能在我的桌子上这样做?

有人帮我吗?

1 个答案:

答案 0 :(得分:2)

一种可能的解决方案是将colspan用于您的表。 例如:



<table style="width:500px;text-align:center">
<tr style="background-color:lightgrey">
  <td>Status</td>
  <td colspan="3">Data</td>
</tr>
<tr style="background-color:lightgrey">
  <td colspan="4">Add New Row</td>
</tr>
<tr style="background-color:lightgrey">
  <td>Daily</td>
  <td>Weekly</td>
  <td>Monthly</td>
  <td>Yearly</td>
</tr>
</table>
&#13;
&#13;
&#13;

样式标签只是在那里使其可视化

希望这会有所帮助。 有关更多信息,请查看http://www.w3schools.com/html/html_tables.asp

干杯, 丹