I'm currently trying to get a scenario working in CSS, which places three texts side-by-side with no wrapping. Once the first text is too long, it has to be truncated. See the picture below for a more detailed explanation.
What I tried so far:
- position texts in a row using float
- position texts in a row using flexbox
- position texts in a row using display: table-cell
As soon as the first text is longer than its container, things break. Either the container (or the text child) becomes larger than it should or the other two texts will be cut/hidden.
Does anybody have an idea to achieve a flexible layout as illustrated below?
Case 1 (any alternative) and Case 2 must be possible without knowing the width of the text.
