Here's the div code I'm working with:
<div style='overflow:hidden;resize:both;border:1px solid orange;'>
<div style='background-color:#aaa;width:400px;height:300px;'>
</div>
</div>
You can view it in action here: http://jsfiddle.net/4w7zd/
In Firefox, you can resize the main div to be larger or smaller. But in Chrome, you can only resize it to be bigger.
Does anyone know of a workaround so that I can freely resize the main div as needed in Chrome, similar to how it works in Firefox?
Thank you in advance!