CSS position: absolute screen resolution problem

Viewed 39017

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 was working on 1024 resolution, but when I tested the same on a different resolution it's out of alignment.

How can we fix it?

5 Answers

I have same issue but it resovled by adding width 100% to the parent div.

Related