celebrityduo
Programmer
Hi,
My page has a div (divC) whose conten gets scrolled by some arrows in divD.
The code works fine. However, I have now tried putting a form in as the content in DivC. It works fine in IE, but in Netscape, the radio buttons, check boxes and submit etc buttons won't work, plus the form boxes lose their shape etc when I scroll.
I tried removing different parts of the code to isolate the problem, and when the following was removed, the radio buttons worked. But of course - the browser returned a .css error.
?<style type="text/css">
#divD{position:absolute;left:0;top:0;height:100%}
#divC{position:relative;width:100%;height:100%;overflow:hidden;top:0;left:0;clip:rect(0,100%,100%,0)}
#divT{position:relative; top:0; left:0}
</style>
How can I make the buttons work while retaining the above code?
My page has a div (divC) whose conten gets scrolled by some arrows in divD.
The code works fine. However, I have now tried putting a form in as the content in DivC. It works fine in IE, but in Netscape, the radio buttons, check boxes and submit etc buttons won't work, plus the form boxes lose their shape etc when I scroll.
I tried removing different parts of the code to isolate the problem, and when the following was removed, the radio buttons worked. But of course - the browser returned a .css error.
?<style type="text/css">
#divD{position:absolute;left:0;top:0;height:100%}
#divC{position:relative;width:100%;height:100%;overflow:hidden;top:0;left:0;clip:rect(0,100%,100%,0)}
#divT{position:relative; top:0; left:0}
</style>
How can I make the buttons work while retaining the above code?