This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Background color problem with dynamic XSL


These three methods work in IE 4 or better:

document.bgColor = "silver";
document.body.bgColor = "silver";
document.body.style.backgroundColor = "silver";

The only one that works in Netscape is

document.bgColor = "silver";

because in Netscape, document.body has no properties.


Hope this helps...

-Kevin

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]