Forum Moderators: open
IE loads this tables background immediately but firefox has a delay. The image it at the top of the page and I tried putting it in a style sheet a the top and it still had a delay.
I read where others tried to preload the background but it still had a delay in firefox. No problems with IE though.
Anyone else have this problem or heard of a fix?
bgproperties="fixed" is proprietary Microsoft code and has never been valid in any version of HTML. If you want to fix your background image you have to use a bit CSS.
body {
background-image:my_image.jpg;
background:position:center top;
background-repeat:no-repeat;
background-attachment:fixed;
}
body {
background:url(my_image.jpg) no-repeat fixed center top;
}
Background properties [w3schools.com]