I need items in a list to be this format:
|Name | Some other val1|
|Very very long no wrap line that...| Some other val2|
- The right side is a fixed width.
- The left side must fill all available width up to the right pane.
- Has to react to screen resizing (it's a mobile website, so really orientation changes)
- Lines of text on the left pane must not wrap, they need to be cut off using ellipsis (text-overflow: ellipsis).
Put another way:
|<-- flexible, multi-line, but not wrapping (uses ellipsis) -->|<-- fixed width -->|
I've tried all sorts of float: lefts and rights, overflow:hidden, and tricky stuff with margins with no luck! Should I just use a table?