Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/82.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
HTML表格-多行跨距_Html_Html Table_Tablerow - Fatal编程技术网

HTML表格-多行跨距

HTML表格-多行跨距,html,html-table,tablerow,Html,Html Table,Tablerow,我想创建一个如下所示的表: ______________________________________________________________ | | | Category1 | | | Platform1 |____________________________| | | | Category

我想创建一个如下所示的表:

______________________________________________________________
|              |                |      Category1             |
|              |   Platform1    |____________________________|
|              |                |      Category2             |
|              |________________|____________________________|
|   Build      |                |      Category1             |
|              |                |____________________________|
|              |                |      Category2             |
|              |   Platform2    |____________________________|
|              |                |      Category3             |
|______________|________________|____________________________|
我写了一些代码,但我认为它不正确。由于我对HTML非常陌生,有人能给我一些建议吗:

类似的建议:

<table width="200" border="1">
  <tr>
    <td rowspan="5">Build</td>
    <td rowspan="2">Platform1</td>
    <td>Category1 </td>
  </tr>
  <tr>
    <td>Category2 </td>
  </tr>
  <tr>
    <td rowspan="3">Platform2</td>
    <td>Category1 </td>
  </tr>
  <tr>
    <td>Category2 </td>
  </tr>
  <tr>
    <td>Category3</td>
  </tr>
</table>

建筑
平台1
类别1
类别2
平台2
类别1
类别2
类别3

向我们展示您的尝试