[Solved] Design table that it’s have long name with sorting sign and textbox for search


I have looked up and down, tried all the different and various ways of being able to solve this problem,Then I find the Solution.
You can use the text-overflow Property in CSS to not write long titles in multiple lines.

Use this Style :

th.fit {
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

Check out this Link for more details.

solved Design table that it’s

have long name with sorting sign and textbox for search