You are here: irt.org | BBS | Re: Not scrolling background image in Netscape [This BBS is closed]
Posted by Jason Nugent on September 03, 1998 at 07:04:19:
In Reply to: Not scrolling background image in Netscape posted by Janus Boye on September 02, 1998 at 15:16:54:
: Hi!,
: I received the following question on the HTML FAQ:
: <quote>
: How can I make my background image not scroll when I scroll down the page in Netscape ? (I know that this can be done by using bgproperties=fixed in MSIE)
: </quote>
: Any help would be greatly appreciated,
: --Janus
If you want to exclusively code for version 4 browsers, you can use CSS to do this:
BODY {
background-image: url (images/bg.gif);
background-repeat: no-repeat;
}
but it only works in N4 and IE4.
Jason
Follow-ups:
You are here: irt.org | BBS | Re: Not scrolling background image in Netscape [This BBS is closed]