Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

bgproperties = "fixed"

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
can someone tell me to "fix" the background for netscape.
i know in IE it's <bgproperties=&quot;fixed&quot;> but that doesn't work in netscape...

i know there has to be a equal tag to add in the html code to fix it for netscape users...

please reply your solution to: therealthingz@hotmail.com
 
Actually, there is no such solution in NS4. It can be done in NS6 through CSS.

<HTML>
<HEAD>
<STYLE TYPE=&quot;text/css&quot;>
HTML {
background: url(&quot;your-image.gif&quot;);
background-repeat: no-repeat;
}
</STYLE>
</HEAD>
....

that will work on any browser that follows the W3C CSS2 standard (I'm not sure if it's in the CSS1 standard). Note that many older versions of Netscape don't implement this standard, although this will work more often than &quot;bgproperties&quot;, which is proprietary code to the best of my knowledge. Liam Morley
imotic@hotmail.com
&quot;light the deep, and bring silence to the world.

light the world, and bring depth to the silence.&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top