I'm building a highscores page template, And would like to trim the username (ideally with CSS) if the username and/or score is too long. See this picture :
I can use
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
overflow-y:none;
To trim the username, but how can I trim it relatively to the score length ?
Have you got an idea of how doing this ? Here's a Codepen of my current code : http://codepen.io/anon/pen/yymZGM
Thanks