Semantic-ui-react - Table Cell Colspan

时间:2018-05-31 19:23:33

标签: semantic-ui semantic-ui-react

如何在semantic-ui-react中合并一些单元格,就像我们通常在html表格中使用colspan一样?

https://react.semantic-ui.com/collections/table#types-pagination

我尝试了不同的选择 - 似乎没有任何帮助!!

enter image description here

1 个答案:

答案 0 :(得分:7)

colSpan属性的值必须是引号(" 3")或花括号({3})。否则它将是一个不正确的React JSX语法。

<Table.Cell colSpan="3">

<Table.Cell colSpan={3}>