With a body width of 800px:
body {
width:800px;
margin:15px auto;}
A <div>
area (100x200px) is intended to be positioned in the TOP RIGHT corner of the body, regardless of screen size or browser. The code attempted is as follows:
#login-hover-cont{width:210px;padding:20px;position:absolute;right:0px;_right:-1px;top:30px;z-index:3;background:#fff}
The current result places the div
in the TOP RIGHT corner of the SCREEN instead of the specified location - aligned with the right border of the BODY. Seeking an alternative solution without using "position:relative".