I want to use CSS text-overflow in a table cell, such that if the text is too long to fit on one line, it will clip with an ellipsis instead of wrapping to mult
text-overflow
It is worked for me
table { width: 100%; table-layout: fixed; } td { text-overflow: ellipsis; white-space: nowrap; }