Briefly, I have a field where the rightmost digits are most significant. (Naturally, this field comes from our affiliates\' systems, based on their primary keys, so the left
Try to use this trick:
HTML
ert3452654546
CSS
.ellipsis { overflow: hidden; width: 60px; direction: rtl; margin-left: 15px; white-space: nowrap; } .ellipsis:after { position: absolute; left: 0px; content: "..."; }
FIDDLE