G
Guest
Simple compatibility question, I have this:
<table height="100%" width="50%" border="1">
<tr height="50%">
<td>
<aspanel id="Panel1" runat="server" Height="100%" Width="100%"
CssClass="scroll">
<asp:Label id="Label1" runat="server">Label</asp:Label></aspanel>
</td>
</tr>
<tr height="50%">
<td>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button></td>
</tr>
</table>
which goes with css:
..scroll {
overflow:scroll;
}
on button1 click's action, it'll create something huge on the label so that
it causes overflow inside the panel bounded by the table's 50% on the row.
Simple enough, in IE, the table will retain the 50% row, but in Firefox, the
table gets warped, and the scroll bars doesn't get used.
Need something to make it stick to the table's constraints no matter what.
thx
<table height="100%" width="50%" border="1">
<tr height="50%">
<td>
<aspanel id="Panel1" runat="server" Height="100%" Width="100%"
CssClass="scroll">
<asp:Label id="Label1" runat="server">Label</asp:Label></aspanel>
</td>
</tr>
<tr height="50%">
<td>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button></td>
</tr>
</table>
which goes with css:
..scroll {
overflow:scroll;
}
on button1 click's action, it'll create something huge on the label so that
it causes overflow inside the panel bounded by the table's 50% on the row.
Simple enough, in IE, the table will retain the 50% row, but in Firefox, the
table gets warped, and the scroll bars doesn't get used.
Need something to make it stick to the table's constraints no matter what.
thx