如何在反应表中合并单元格

时间:2019-07-19 03:03:21

标签: javascript reactjs react-table

我正在使用react-table,并希望根据特定单元格的内部编号合并它们。它喜欢删除分隔线边框。

它看起来像这样:https://i.imgur.com/BelFNSj.png

我尝试通过使用Columnsborder-bottom: 1px solid transparent !important;border-top: 1px solid transparent !important;中使用className,但是没有用。 你能告诉我怎么做吗? 谢谢。

1 个答案:

答案 0 :(得分:0)

试试名为 colSpan 的内置表格属性,它指定您要水平合并的单元格数量。

<TableCell colSpan=2> My Cell </TableCell>