There is a table with thead and i need to fix to two lines the elements in inside it to, I mean if this header text is longer than two lines, remaining part of text must be shown with three dots. Hovewer instead of two line break, i can only make white-space:nowrap with one line and

How can i achieve that?
UPDATE:
When i add .table thead th {
display: -webkit-box!important; , it shows the column of table as vertical like that:
-webkit-line-clamp: 2!important;
-webkit-box-orient: vertical!important;
overflow: hidden!important;
}