Tagged Questions
The text-overflow tag has no wiki summary.
72
votes
5answers
8k views
text-overflow:ellipsis in Firefox 4? (and FF5)
The text-overflow:ellipsis; CSS property must be one of the few things that Microsoft has done right for the web.
All the other browsers now support it... except Firefox.
The Firefox developers have ...
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 ...
12
votes
2answers
1k views
Anybody know a way to use CSS text-overflow on text that's wrapping?
Does anybody know of a way to use {text-overflow: ellipsis;} on a piece of text that's wrapping to a second line?
Adding {whitespace: nowrap;} makes text-overflow work, but I need the text to wrap so ...
10
votes
2answers
11k views
Using CSS text-overflow to vary the number of lines of text within an element of a set height
I'm deep into some iPhone (Safari/WebKit) web app development at the moment and want to have items of a set height with title text and body text such that 3 lines are always showing. If the title 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
888 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 ...
3
votes
3answers
1k views
How to show ellipses to the overflew text for HTML elements in Firefox?
I need to show the ellipses(...) if the text overflows in DIVs and SPANs.
I have a CSS attribute called text-overflow:ellipses. But this works only in IE.
I want to display the same in other ...
2
votes
2answers
518 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
2answers
265 views
Simulate text-overflow=“ellipsis” in CSS2
Is there any way to simulate text-overflow="ellipsis" using CSS2?
I found this solution that emulates text-overflow:ellipsis in firefox with CSS but it's not working.
I'm not interested in a ...
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
57 views
Custom text-overflow CSS?
I am aware this is possible via Javascript, as I have done it myself. However, as the platform I am building up gets bigger and bigger, I want to take as much JS heavy-load as possible. Furthermore, ...
0
votes
1answer
96 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
2answers
147 views
Setting text-overflow ellipsis for a float left div or list
Here's what I'd like to do:
Create a list that only takes up as much room (horizontally) as needed (i.e. as the longest list element.
When the list doesn't fit on the page, trim the list text and ...
0
votes
1answer
139 views
“text-overflow” for a QLabel’s text rendering in QT
I have got a QLabel element in a widget which can be resized. The text can overflow boundaries, so I need, for the application to look more elegant, some way to make the text generate an ellipsis ...
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
150 views
How to show “…” when there's not enough space to view all the text
How does jQueryMobile shows "..." when there's not enough space to view all the text?
Is it an CSS attribute?
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 ...
0
votes
1answer
672 views
AutoEllipsis in StatusStrip Label?
I'm coding a Windows Forms App that has a StatusStrip that displays status informations to the user, and hints when the mouse is over relevant things. However, when the program is on it's minimal ...