Grid Columns data overlapping in semantic-ui-react?

前端 未结 1 1546
温柔的废话
温柔的废话 2021-01-24 17:32

https://codesandbox.io/s/m3ljr4zl8p

example.js

I wasn\'t expecting column1 data to start overlapping into column2\'s instead of going down as it is

1条回答
  •  礼貌的吻别
    2021-01-24 18:07

    Columns are not overlapping. It's your

    element takes more space than columns.

    Add this style to it:

    word-break: break-word;
    

    Before word-break:

    After word-break:

    0 讨论(0)
提交回复
热议问题