Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to place my div with some notes in the bottom right position of the screen which will be displayed all time.

I used following css for it:

#foo
{
     position: fixed;
     bottom: 0;
     right: 0;
}

It works fine with Chrome 3 and Firefox 3.6 but IE8 sucks...

what can be a suitable solution for it?

share|improve this question
What DOCTYPE are you using? Thinking of IEs "compatibility" modes – sewa Sep 1 '10 at 9:29
none... which should be used? – KoolKabin Sep 1 '10 at 9:31
In relation to your IE6 comment below, IE6 does not understand position:fixed;. So what you do is have a wrapper div that has position:relative; filling the whole screen and then you position the div you want with position:absolute;. If however your site scrolls down you need to use CSS expressions in IE6 to keep the div docked to the bottom right corner. – Strelok Sep 1 '10 at 9:44
thnx for the information. regarding IE 6 them i would better leave it alone... :P where can i fnd that css expression – KoolKabin Sep 1 '10 at 10:08

3 Answers

up vote 3 down vote accepted

This snippet works in IE7 at least

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Test</title>
<style>
  #foo {
    position: fixed;
    bottom: 0;
    right: 0;
  }
</style>
</head>
<body>
  <div id="foo">Hello World</div>
</body>
</html>
share|improve this answer
thnx swa it worked...but what to do with IE6 – KoolKabin Sep 1 '10 at 9:34

Try making its parent position:relative

share|improve this answer
m afraid it didn't worked for me... i think its not appropriate here – KoolKabin Sep 1 '10 at 9:26

Try this:

#foo
{
    position: absolute;
    top: 100%;
    right: 0%;
}
share|improve this answer
I think that will make the top edge below the bottom edge of the parent element. – Michael Robinson Sep 1 '10 at 9:32
No. 100% is screen.height - element.height. – Cipi Sep 1 '10 at 10:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.