Limit The Character In Html Column
Hello I have a table that look like this I want to limit the number of characters within each column, so it will display properly, in this picture I haven't included any space to
Solution 1:
Try this, it will break by the word as well as wrap the content
word-break: break-all;
word-wrap:break-word;
Solution 2:
Try to use the overflow option to hide anything that does not fit in the column.
overflow: Hidden;
You can find more details at Link
Post a Comment for "Limit The Character In Html Column"