Grid Columns data overlapping in semantic-ui-react?

我只是一个虾纸丫 提交于 2019-12-20 04:16:13

问题


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 now exceeding the grid column width.

What is the solution for this?


回答1:


Columns are not overlapping. It's your <p> element takes more space than columns.

Add this style to it:

word-break: break-word;

Before word-break:

After word-break:



来源:https://stackoverflow.com/questions/55215310/grid-columns-data-overlapping-in-semantic-ui-react

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!