I've got a long div container set to display:table
and & divs within it set to display:table-cell; vertical-align: middle
.
I'm really happy with the results of vertical alignment, but:
- I don't know the width of these 3 divs,
- I want one of them to be on the very right side of div container (minus padding of course),
float: right
doesn't work withdisplay: table-cell
.
Here's an example (I want to float the golden divs to the right). I can't use JS. I need it to work in IE7+, or IE8+ if impossible for IE7. Any hints / ideas?
When float!=none then display = block
For this vertical align doesn't work:
But for this it works for me:
I don't know if this works with IE7 or 8, but I have done this by combining
width: 1px
,width: auto
andwhite-space: nowrap
. Define all cells in the table layout as one-pixel wide, but prevent wrapping; then add an empty padding cell before the ones you want to float right.http://jsfiddle.net/wZ96P/
Seems to work with the modern versions of Chrome, Opera, Firefox, and IE, at least.