Tagged Questions

15
votes
15answers
12k views

How can I mimic text-overflow: ellipsis in Firefox?

I have some dynamic text contained in a div that is set to whatever a user enters in a textbox field. If the text doesn't fit in the div, right now it just gets cut off at the edge and all the text ...
6
votes
3answers
1k views

With CSS, use “…” for overflowed block of multi-lines

with overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "..." will be shown in the end of the line if overflowed. However, this will be shown only in one line. But I would like it to ...
3
votes
3answers
86 views

How to debug the different behavior of the same browser on the different platforms?

I am trying to use the text-overflow: ellipsis technique introduced in this article: http://mattsnider.com/css/css-string-truncation-with-ellipsis/ which works surprisingly wide across the browsers. ...
3
votes
1answer
890 views

Fluid table with td nowrap & text-overflow?

Here is my problem HTML: <table style="width:100%"> <tr> <td style="width:100%;overflow:hidden"> <div ...
2
votes
2answers
519 views

“text-overflow: ellipsis;” in XUL applications

I'm writing an extension to an existing XUL-application, conkeror. In that, In some part of the user-interface of I'm writing, I'm creating HTML elements with a fixed-width, <span>s in this ...
2
votes
5answers
709 views

Overflowing HTML line text before it gets obscured by right aligned content

I've got some text that is displayed on a single line in a container that has a fixed width. If the text can't be contained within the width of the container the overflow is hidden. Any combination of ...
1
vote
1answer
217 views

CSS: Visual Hint That Text Overflows

I'm looking for a way to mark when text overflows it's container. The code goes like in this example. Basically, it's a <span> with a set size. I want some kind of marker to show me when the ...
1
vote
1answer
2k views

how to obtain Text-overflow : ellipsis type style (…) in mozilla

I am trying to get ellipsis in Mozilla.I have found out some jquery plug in which helps to form ellipsis in Mozilla but when huge amount of data comes it does not handle well forming script error in ...
0
votes
1answer
97 views

Text-overflow not working. Simple HTML attached

The attached HTML is for a Yahoo News Style panel I am trying to make. I want the content at the bottom to show "ellipsis" when it overflows. As of now the browser is able to detect the overflow and ...
0
votes
3answers
57 views

Text overflow in search results box

I'm trying to follow this tutorial, but I'm hitting a strange css issue. I am getting a text overflow issue, and I don't know why. Also the last span element is not being shown. I am not a web ...
0
votes
1answer
263 views

Show content in title when text-overflow

CSS3 introduces text-overflow so you can hide overflowing text and even add ellipses. If the text is overflowing and hidden, I would like to show it as a tooltip when hovered. The easiest way to do ...