http://axol.de/HTML/Projects.html
On this page you can see that "Impressum" is in the middle of the page, instead of the bottom right. Can anyone tell me why this happens?
I dont want to add "height:100%" to my body, because then there is a scrollbar on the y axis for no reason...
How can I put it on the bottom page without having to give body any height?
This happens because you did not set the position of the
<div>
-Tag. And by default it is directly under the previous element.Set as a footer (div):
for your right alignment (div)
And for a little distance to the rigth border (a)
And by the way: you can hide scrollbars with
overflow:hidden
(body)Edit: