Ok, I\'m trying to get a div to scale and the height is always the height of the viewport. I\'m going to link to my examples as it needs some explaining.
www.madmediabli
You can use absolute positioning in a quite surprising way I surmise:
div#element { position: relative; } img.vertical { position: absolute; top: 0; // no need for px or em bottom: 0; }
A compliant browser should try to respect both the top and bottom directives, actually managing a full height.