PHP page without background color in Internet Explorer

-1

I'm having a problem opening a PHP page on Internet Explorer. It removes the background colors.

In Chrome, open all pages normally.

<table style="width:100%;height:100%;" bgcolor="#4682B4" border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr></table></div>
 <input value="Procurar" name="IWBUTTON2" type="Submit" class="IWBUTTON2CSS" id="IWBUTTON2" tabindex="21">
    
asked by anonymous 28.04.2014 / 18:09

1 answer

0

Try adding the background-color style

<table style="width:100%;height:100%;background-color:#4682B4;" bgcolor="#4682B4" border="0" cellpadding="0" cellspacing="0">

 

Another thing ...

The div that closes just after the tag seems to me not to be open. Usually Google Chrome automatically closes the tags for you so it's working.

    
28.04.2014 / 23:53