Tagged Questions

75
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 ...
13
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 ...
11
votes
2answers
12k 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
1answer
1k 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
534 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
719 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
53 views

Three flexible spans in a container with one allowing text-overflow

I'm currently trying to get a scenario working in CSS, which places three texts side-by-side with no wrapping. Once the first text is too long, it has to be truncated. See the picture below for a more ...
1
vote
3answers
56 views

Css text-overflow not showing properly

Can't get to show properly my h2 title when to large CSS: .column li{ float: left; width: 200px; min-width: 150px; margin: 5px auto; display: inline; } .column li .block { ...
1
vote
1answer
237 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
73 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
146 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
201 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
3answers
70 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
176 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
286 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 ...