如何使用材质ui

时间:2019-07-04 07:48:48

标签: html css reactjs material-ui

也许标题描述不够。我需要做的是创建看起来像这样的表 enter image description here

基本上,“平均”是具有两个“子像元”的合并像元,“高度”和“宽度”可能会进一步细分。但是,在材料ui中使用跨度不能达到预期的结果。

1 个答案:

答案 0 :(得分:0)

我为您创建了一个CodeSandBox。要查看代码及其工作方式,Visit CodeSandBox here

图片中表格标题的代码

  <thead>
      <tr>
        <th rowSpan="2" />
        <th colSpan="2"> Average </th>
        <th rowSpan="2"> Red Eye </th>
      </tr>
      <tr>
        <th> Height </th>
        <th> Weight </th>
      </tr>
  </thead>