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
P.S. this may be a HTML question and not a CSSYour problem description leaves quite a bit to be desired. Posting some code would help.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
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.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;
Adamno 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.Ok, try this:
position: absolute;
top: auto;
bottom: 0;
Adamthank youNo problem.
Adam
but i used align-baseline and so on but it just stays there.
HELP
P.S. this may be a HTML question and not a CSSYour problem description leaves quite a bit to be desired. Posting some code would help.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
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.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;
Adamno 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.Ok, try this:
position: absolute;
top: auto;
bottom: 0;
Adamthank youNo problem.
Adam