<div id="box1">
<div id="box2" style="height:60%"></div>
</div>
Update - It turned out to be something silly: there was a parent div that I hadn't closed properly. I'm still curious why changing some css in the web inspector managed to fix it. Thanks everyone!
The problem happens in webkit browsers (Safari, Mobile Safari, Chrome, Android browser), but doesn't in Firefox:
On window resize, box1's height is changed with javascript, but box2 doesn't expand/contract to be 60% of box1's new height UNTIL I go into web inspector and manually change any css rule of any element as long as it's not the style attribute of that element. (So the rule I change has to originate from inline css or a .css file - but it doesn't matter which file)
What is going on? Why does this happen? If there is some sort of recalculation or refreshing of the css, how do I force this to happen upon window resize?
div#box2in your JS as well? – Jason Gennaro Jul 28 '11 at 13:59