fixing background image

liunx

Guest
I'd like to know if it is possible to fix the background image in a particular position on the page (I'd like to fix mine in the left bottom corner).<br />
<br />
I know you can fix the background image so that it won't be scrolled, but how can I specify the place?<br />
<br />
Thank you<br />
<br />
orlenok<!--content-->Create a table using the dimensions you want depending on what resolution your creating it for, then (Align=left Valign=bottom) Just an idea, i'm not sure if it'd work or not. Since it would impact the position of your main content.<!--content-->This is an IE (and Netscape 6) only method of having a "no-tile" background.<br />
Because it uses no-repeat image won't scroll with the page.<br />
Just like the effect of BGPROPERTIES="fixed"<br />
<br />
<HTML><br />
<HEAD><br />
<TITLE> Fixed background using styles <TITLE><br />
<STYLE TYPE="text/css"><br />
BODY { background-repeat:no-repeat;background-attachment:fixed;<br />
background-position:left bottom;background-image:url(blah.jpg) }<br />
</STYLE><br />
</HEAD><br />
<BODY><br />
etc...<br />
<br />
The background-position can left/center/right for x axis and<br />
top/center/bottom for the y axis. With IE5.5 you can use a numeric value to <br />
specify the x/y co-ordinates in pixels<!--content-->
 
Back
Top