I have div with tranparent drop down,it acts as suggest box.Below this i have two input boxes.Whenever i call this suggest box,it overlaps other two input boxes. iam trying to control this using zindex property and position elements,But is is not working.
Any help appreciated.Thanks in advance.
After applying z-index,i didn't see my controls in jsp page. Below is the code:
<tr>
<td colspan="2">firstname</td>
<td colspan="2"><table cellspacing='0' cellpadding='0' border='0' style='position:relative;float:left;'>
<tr><td width="25%" style="position:relative;z-inedx:999'>
<input type="text" name="firstname">
</table></td></tr>
</td>
</tr>
<tr>
<td colspan="2">lastname</td>
<td colspan="2"><table cellspacing='0' cellpadding='0' border='0' style='position:relative;float:left;'>
<tr><td width="25%" style="position:relative;z-inedx:1'>
<input type="text" name="lastname">
</table></td></tr>
</td>
</tr>
<tr>
<td colspan="2">middlename</td>
<td colspan="2"><table cellspacing='0' cellpadding='0' border='0' style='position:relative;float:left;'>
<tr><td width="25%" style="position:relative;z-inedx:1'>
<input type="text" name="middlename">
</table></td></tr>
</td>
</tr>
On chnage of firstname value ,i am displaying div content,it overlapping other two input controls. Regards, Raj