Break a continuous text in column
Break a continuous text in column
mjanbazi
Posts: 1Questions: 1Answers: 0
i have a column that have a long text(continuous ,without any space!!!!). i want to break this line , i dont want to my table have scroll
note: my text is continuous and without any space(like a long windows directory path) => C:\windows\system32\drivers\drivers32\bin\data\system\autorun\win7\system32\windows\system\test\driver\system\amdX86.exe
thank you
This discussion has been closed.
Answers
A quick Google search for "css break text" will lead you to the
word-wrap
property (alsooverflow-wrap
) which could be used for this. The other option is to usecolumns.render
to modify the string and inject a space where you want it to wrap.Allan