In the jsfiddle example below, I'd like the left column (#left) and the right hand columns (#right) to vertically align to the middle of the middle column (#middle). The height of the middle column (#middle) can vary.
This is for mobile devices, hence the use of
text-overflow:ellipsis;
white-space:nowrap;
overflow:hidden;
This part seems to work as required on screen resize.
Can this be achieved using CSS only (no javascript)?
display: table-cellto vertically align the content: jsfiddle.net/jblasco/4T8WU/1 Unfortunatelyoverflow: hiddendoesn't seem to have an effect. Maybe the fiddle will give someone else an idea, though. – jblasco Dec 16 '11 at 12:59