Hi Jason,
I have tables inside my div:
<style type="text/css">
.Rounded
{background: White;
padding:1.5em;
background: #FFF;
position: relative;
height:auto;
overflow:hidden;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
z-index:0;
}
</style>
<%-- Note the PIE Class is dynamically generated for the behavior url:
http://stackoverflow.com/questions/1277 ... of-pie-htc --%>
<div id="div1" class="Pie Rounded">
<table style="width:100%; height:auto; border:1px solid black">
<tr>
<td>
<%-- STUFF --%>
</td>
</tr>
</table>
<div id="div2" class="Pie Rounded">
<table>
<tr>
<td colspan = "5" class="ContentContainer">
<asp:ContentPlaceHolder ID="MainContent" runat="server">
<p>
</p>
</asp:ContentPlaceHolder>
</td>
</tr>
</table>
</div>
When mouse wheeling the divs tend to jump around and the layout is broken. Upon resizing everything is fine.
Thanks.