Here's a question that goes beyond your typical "vertical align center" query. What I want to accomplish is to take a div with an unspecified height and position it at a specific percentage down the page, let's say 33%. I have managed to get this working, but not in the way that I desire.
Instead of using position:absolute; top: 33%
or bottom:33%;
, I am looking for a way to calculate the 33% from the middle of the div with unknown height. Is there a solution for this?