My body is 800px wide:
body {
width:800px;
margin:15px auto;}
I have a <div> area (100x200px) that should be in TOP RIGHT corner of the body, no matter what screen or browser opened it. I tried to do following:
#login-hover-cont{width:210px;padding:20px;position:absolute;right:0px;_right:-1px;top:30px;z-index:3;background:#fff}
It puts the div to TOP RIGHT corner of the SCREEN, which is wrong - I want it to be in the place where the right border of BODY is. How do I do that?
Don't feel like using "position:relative".
position: relativeis the correct and standard way to achieve the effect you are asking for. – Quentin Mar 8 '12 at 15:38