Hi, I’m having some trouble with fixing the table column width and was hoping for some guidance.
The "Subject Name" column has a long text that goes beyond the boundary. I've tried the following:
But it’s still not working as expected. Do you have any suggestions on how to fix this?
Thanks!
Hi @Rajanha Kumar ,
use this class CSS on the expression or table column.
.wrap{
}
this will work and break a word without space as well.
Regards
Rahul
Hello,
Did you tried to set width of Row cell (column) as following:
Hi @Mostafa Othman, yup, i set width of each Row cell, but still not work well
It works, my testing record should not use the single long word without any space, thank you Mostafa.
Hi @Rajanha Kumar,
We have two scenarios:
First is that as per your screenshot we have only one word that is long that much without space basically we don't have that much long single word. But if we have we can do word-wrap.
word-wrap is one of the CSS property which defined in the below link how it works:
https://www.w3schools.com/cssref/tryit.php?filename=trycss3_word-wrap
Second is that if we have sentence which long and going out of the box so you can see below CSS property link:
https://www.w3schools.com/cssref/playdemo.php?filename=playcss_white-space&preval=pre-wrap
Hope this will helps you!!
Regards,
Rajat
Thank you Rajat, it works!