Forum Moderators: not2easy
I have a very small space to fit some text in, so ideally would like to restrict the amount of characters (by height/two lines of text) and then to display an ellipsis.
This does work in IE, but in Firefox, althought the text is truncated too, the ellipsis is not displayed.
Here is a snippet of CSS:
.text {
width: 100px;
height: 15px;
max-height: 15px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
Is it possible to get this working in Firefox?