Posted by Jonathan N. Little on 03/02/06 15:51
Bill_W_Stephens@yahoo.com wrote:
> I was trying to simplify a web page by substituting some tables for
> DIVs. Unfortunately one of my DIVs is preventing me to access text
> fields (IE and FF) and drop-down box (only in FireFox)
>
> This is actually the first time I have used DIV in a input screen. Can
> anyone advise how to craft this without the overlap problem?
>
> see link for a small extract that illustrates my problem:
>
> http://www.mybis.net/itp/divTest.html
>
> thanks in advance
>
Firefox behavior is correct, your TABLE id "Left" is absolutely
positioned *over* top of the DIV containing the drop-down boxes...
Change style
#Left
{
/* REMOVE THIS -> position: absolute; */
float: left; /* <- ADD THIS */
....
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|