Here is my problem HTML:

<table style="width:100%">
  <tr>
    <td style="width:100%;overflow:hidden">
      <div style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;">long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long
      </div>
    </td>
  </tr>
</table>

Here is what I wanted:

<div style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%">long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long
</div>

That is:

  1. No horizontal scroll bars
  2. div do not make the table and td so wide
  3. resizing browser window makes the div dynamic change of ellipsis

btw, anyway to minic text-overflow on Firefox?

link|improve this question

70% accept rate
There's an alternative approach in this answer on how to mix text-overflow and table cells using CSS. – romkyns Feb 28 at 16:07
feedback

1 Answer

up vote 3 down vote accepted

Edit: fixed this myself using CSS:

table { table-layout:fixed; width:100%; }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.