- Form buttons covered by div's background-color
- Posted by christina.k.young@gmail.com on March 9th, 2006
I have a form nested within div tags (<div> and </div) and when I set
the background color of my div, the buttons in the form are covered
over. That is, I can't see them, but they're still clickable. I only
have this problem in IE6, and none in Firefox/Netscape.
So, my code looks a little like this:
<div style="background-color: #E3F6FF; ...">
...
<form>
...
<input type="submit" ... />
...
</form>
...
</div>
- Posted by Andrew Bailey on March 10th, 2006
Hi,
try this instead...
<form>
<input type="submit" style="background-color: #E3F6FF" ......>
</form>
Hope that helps
Andy
<christina.k.young@gmail.com> wrote in message
news:1141930980.966914.38010@u72g2000cwu.googlegro ups.com...


