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
This worked in my case, in both Firefox and Chrome:
td { max-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%; }