Can you achieve a layout where two elements are inside a container and float side-by-side? The right element should adjust its size based on the content while the left element fills the remaining space in the container with an ellipsis to truncate overflow.
---------------------------------------------
|[left element with lots of conte...][right]|
---------------------------------------------
I attempted this using tables: http://jsfiddle.net/xsr71pak/
However, both table cells ended up taking 50% of the table. I prefer not to use tables, but it was the closest I got to the desired result. Any assistance would be greatly appreciated!