Tagged Questions
0
votes
1answer
39 views
how to replace first overflown element with ellipsis “…”
I have a div with mutiple tags inside it, the div is fixed width and height and i want to replace just the text that overflows the parent with "..."
<div class="container" style="width:200px; ...
0
votes
0answers
48 views
Transitioning between text-overflow: ellipsis and overflow: visible
I'm trying to achieve a smooth transition effect between the truncation of ellipses in a paragraph to becoming visible when you hover over the section.
Here's what I have so far: ...
3
votes
3answers
329 views
text-overflow:ellipsis doesn't work on IE
In this page there are some links at the left sidebar that get cropped with:
.widget-area .textwidget li {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
In ...
1
vote
1answer
520 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 ...