Hi
I am trying display a table inside a DIV with bgcolor . Overflow property of DIV is set as Scroll.It works fine in IE,FF,NS but in “Opera” the table spill out of the DIV.
Please help me to find a solution for this issue .
thanks:?)
my code
<div id="test" style="z-index=11;background-color:green;height:3cm;width:10cm;overflow:auto;overflow-y:scroll;overflow-x:scroll ">
<table height="10 cm" cellspacing="3" cellpadding="1" border="2" style='Z-INDEX:110;position:relative' >
<tr>
<TH>Question #</TH>
<TH>Status</TH>
<TH>MIN MARK</TH>
<TH>MARK OBTAINED</TH>
</tr>
<tr>
<TD>1</TD>
<TD>Fa</TD>
<TD>50</TD>
<TD>70</TD>
</tr>
<tr>
<TD>2</TD>
<TD>Fa</TD>
<TD>50</TD>
<TD>60</TD>
</tr>
<tr>
<TD>3</TD>
<TD>Fa</TD>
<TD>50</TD>
<TD>80</TD>
</tr>
<tr>
<TD>4</TD>
<TD>Fa</TD>
<TD>50</TD>
<TD>78</TD>
</tr>
</table>
</div>