Click to See Complete Forum and Search --> : align bottom


chris9902
11-01-2003, 04:45 PM
i have 1 image and i want to make it go to the bottom the the window.

but i used align-baseline and so on but it just stays there.

HELP :confused:

P.S. this may be a HTML question and not a CSS

gil davis
11-01-2003, 08:17 PM
Your problem description leaves quite a bit to be desired. Posting some code would help.

Paul Jr
11-01-2003, 09:04 PM
Originally posted by chris9902
i have 1 image and i want to make it go to the bottom the the window.

but i used align-baseline and so on but it just stays there.

HELP :confused:

P.S. this may be a HTML question and not a CSS

Correct me if I'm wrong, but I believe he wants his background image at the bottom of the page, probably repeating across.

AdamGundry
11-02-2003, 04:02 AM
Is this what you want?

background: white url('example.jpg') repeat-x bottom;

Or in longhand:

background-color: white;
background-image: url('example.jpg');
background-repeat: repeat-x;
background-positition: bottom;

Adam

chris9902
11-02-2003, 04:43 AM
no it's not a background image.

it just an image and i want it to be at the bottom of my page and not at the top.

AdamGundry
11-02-2003, 06:44 AM
Ok, try this:

position: absolute;
top: auto;
bottom: 0;

Adam

chris9902
11-02-2003, 09:16 AM
thank you:)

AdamGundry
11-02-2003, 01:39 PM
No problem. :cool:

Adam