React colspan not working

前端 未结 5 1904
梦谈多话
梦谈多话 2020-12-14 00:34

Why colspan attribute doesn\'t have effect in React? I created simple component which renders the following:


    <         
5条回答
  •  醉话见心
    2020-12-14 01:00

    colspan property is in camelCase like colSpan. So instead of colspan we need to use colSpan.

    In React v16.12 you can still supply the value as either int, like so colSpan={4} or string, like so: colSpan="4".

提交回复
热议问题