CSS code:
top:45;
left:98;
float:right;
position:absolute;z-index:2;
I have done the above coding for a floating div when I wa
Assuming the element is not contained within another element with a position of relative, the element you are positioning should be in the same position regardless of resolution.
Make sure you use:
top: 45px
left: 98px
You left the pixel declaration off in your code above.
Also, float:right is not required on the positioned element, as position:absolute will take it out of the normal flow of the document anyway.