Tagged Questions
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 ...
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 ...
6
votes
4answers
2k views
CSS/JQuery powered sideways scrolling text on hover
I have a twitter feed on a website I run. However, it gets cut off on small screens. I have a bar tall enough for 1 line of text in which I have the latest tweet. I want the tweet to ellipsize or fade ...
6
votes
2answers
4k views
Limit text length to n lines using CSS
Is it possible to limit a text length to "n" lines using CSS (or cut it when overflows vertically).
text-overflow: ellipsis; only works for 1 line text.
original text:
Ultrices natoque mus ...
5
votes
1answer
173 views
HTML text-overflow ellipsis detection
I have a collection of block elements on a page. They all have the CSS rules white-space, overflow, text-overflow set so that overflowing text is trimmed and an ellipsis is used.
However, not all the ...
4
votes
1answer
170 views
CSS text-overflow - apply ellipsis if text extends (n)th line
I'm using the following code to to prevent text from overflowing to a new line:
.info-box{
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
height: 3em;
width: 300px;
...
4
votes
1answer
365 views
Is it possible to use text-overflow:ellipsis without the white-space:nowrap rule?
I have a p-tag with a specific width and height. I want to use text-overflow:ellipsis to get ... if the text in the tag is too long. I this possible to solve with css on multiline text?
4
votes
1answer
596 views
How do I get -moz-binding to work for ellipsis with data:text/xml?
We have a lot of elements on the project I am working on that use ellipsis styles, which, of course, work fine with pure CSS in all major browsers but FireFox. We implemented the -moz-binding fix for ...
1
vote
1answer
63 views
text-overflow: ellipsis problems in internet explorer
I'm trying to shorten the length of columns in a certain table.
I'm using some jQuery to add text-overflow ellipsis and a few more css properties. I also add a tooltip using some more jQuery.
Here's ...
1
vote
1answer
93 views
Display up to 3 rows of a text field
Goal: I'd like to display up to 3 lines of a long text field in a <div> of defined width.
Current flawed approach:
<style>
div{
width:50%;
height:100px;
padding:10px;
...
1
vote
1answer
535 views
HTML - how can I show tooltip ONLY when ellipsis is activated
I have got a span with dynamic data in my page that contain ellipsis. Meaning:
<span style='text-overflow: ellipsis; overflow : hidden; white-space: nowrap;
width: ...
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 ...
1
vote
1answer
567 views
FireFox text-overflow ellipsis hack removes all other styling
I'm trying to implement text-overflow: ellipsis; support in the FireFox version of my web site. I've found the XUL hack on the web and have applied it to the stylesheet, but I find that applying the ...
1
vote
3answers
2k views
CSS column header with img - how to dock img/div to the right?
I have an HTML table that I use as column headers to a grid view. Clicking on a column header triggers javascript that makes the grid view sort, and an icon showing that the column is sorted shows up ...
0
votes
1answer
212 views
direction: rtl with javascript
I am using the following JS to mimick ellipsis with Firfox. All works well but i need to change the direction of the text so the ellipsis is at the beginning rather than at the end of the text.
Does ...
0
votes
5answers
332 views
Control overflow of TD element
I have got TD with long text in it. I'd like it to be ellipsised, but I don't want to define the absolute width of this column - I want it to be calculated dynamically by its parent table. Is it ...
0
votes
1answer
207 views
html/CSS Ellipsis
I'm trying to get an ellipsis to work like so: http://jsfiddle.net/583mK/1/
Interestingly, it works fine on jsFiddle. Strange thing is given the exact same HTML/CSS it's not working on my app and I ...
0
votes
1answer
1k views
In mozilla, text-overflow:ellipsis not working
I have used a jquery plugin for getting ellipsis in mozilla but I want to know other methods to get the ellipsis because the plugin I have used showing script error in some cases.
...