我正在使用react-table,并希望根据特定单元格的内部编号合并它们。它喜欢删除分隔线边框。
它看起来像这样:https://i.imgur.com/BelFNSj.png
我尝试通过使用Columns
和border-bottom: 1px solid transparent !important;
在border-top: 1px solid transparent !important;
中使用className,但是没有用。
你能告诉我怎么做吗?
谢谢。
答案 0 :(得分:0)
试试名为 colSpan 的内置表格属性,它指定您要水平合并的单元格数量。
<TableCell colSpan=2> My Cell </TableCell>