text-overflow ellipsis does not work with dynamic width
Asked Answered
R

2

18

hope someone can help.

I have 3 nested div. Parent, children and children's children.

What i want to accomplish (the motive is not relevant) is that that child gets a relative width depending on the parent's width (a percentage) and the children's children must have an overflow ellipsis depending on that width. The problem is that if i use a % in the children's width the ellipsis does not work and if i define the width in pixeles it work.

Here is the HTML

<div class="a">
   <div class="b">
        <div class="c">
        Here should go some text long enough to ellipsis the overflow
        </div>
    </div>
</div>

Here is the nonworking CSS

    .a {
        border:black 1px solid;
        float: left;
        width: 122px;
        display: table;
        line-height: 14px;
    }
    .b {
        width:100%;
        color: black;
        font-size: 14px;
        text-transform: uppercase;
        cursor: pointer;
    }
    .c {
        line-height: 11px;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space:nowrap;
    }

However if i change b's width for 122px it works perfect (note that 122px should equal 100%).

You can check it here: http://jsfiddle.net/vNRpw/4/

Thanks!

Railroader answered 8/5, 2013 at 1:42 Comment(1)
unnecessary downvote. If I updated the answer everyone would know it was solved so no one would waste time on it. That will give me time for answering the question. Additionally, i cant mark my own answer as accepted after two days. Anyways, thanks for the suggestionsRailroader
R
10

Had display: table; in first div which was causing troubles with the ellipsis. If you delete this then the ellipsis works fine.

I wont delete the question it may help someone

Check it working here: http://jsfiddle.net/vNRpw/6/

Railroader answered 8/5, 2013 at 1:57 Comment(4)
this rule caused a ton of trouble with ellipsis in my code. At first it looks like the ellipsis works, until I resized the DIV. Taking display:table out worked perfectly. Thanks!Whitaker
Mine displays in one line without going to the next line of the DIV #26342911Spatial
I add ellipsis in side Bootstrap's input-group which has display:table. Besides remove display:table, any other way to resolve this? Update: it turns to another question: #9790223Verdi
had the same problem with display:inline-table. changed to inline block and fixed it.Agency
B
7

What about something like this:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">

<style media="all">

.a {
    border:black 1px solid;
    float: left;
    width: 50%;
    line-height: 14px;
}
.b {
    width:100%;
    color: black;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}
.c {
    line-height: 11px;
    width: 98%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space:nowrap;
}

</style>

</head>
<body>

<div class="a">
    <div class="b">
        <div class="c">
        Here should go some text long enough to ellipsis the overflow
        </div>
    </div>
</div>

</body>
</html>

The main change was to put a width slightly less than 100% on .c.

Berkshire answered 8/5, 2013 at 1:53 Comment(1)
Mine stays in one line and shows the ellipses. #26342911Spatial

© 2022 - 2024 — McMap. All rights reserved.