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)?

See: http://jsfiddle.net/TGsdg/4/

link|improve this question
Here's a solution I was working on, using display: table-cell to vertically align the content: jsfiddle.net/jblasco/4T8WU/1 Unfortunately overflow: hidden doesn't seem to have an effect. Maybe the fiddle will give someone else an idea, though. – jblasco Dec 16 '11 at 12:59
Got it to work, but only by using a fixed height. Is that unacceptable, though? jsfiddle.net/jblasco/4T8WU/2 – jblasco Dec 16 '11 at 13:05
feedback

1 Answer

up vote 1 down vote accepted

Only way to do this is to use display:table(-cell) with table-layout:fixed. This will only work, however, if your right & left colums can have a fixed width:

http://jsfiddle.net/TGsdg/7/

link|improve this answer
that works perfectly. Thank you! – haydenp Dec 16 '11 at 13:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.