Div doesnt display right with position absolute

87 Views Asked by At

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?

1

There are 1 best solutions below

3
On

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):

position: fixed;
bottom: 0px;

for your right alignment (div)

width: 100%;
text-align: right;

And for a little distance to the rigth border (a)

margin-right: 10px;

And by the way: you can hide scrollbars with overflow:hidden (body)

Edit:

<div ... style="position:fixed; bottom:0px; width:100%; text-align:right">
  ...
  <a ... style="margin-right:10px"></a>
  ...
</div>