i would like to know why my divs are not fixed. I pass a position x and y on the html but depending of the screen resolution or if a maximize the html or reduce his width or heigth.
I want that this divs are always in the exactly position.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
when you set the position to absolute, you are putting that div in the absolute spot according to the axis you specified, no matter how you resize, it’ll be there.
I suppose you want the text to be in the exact spot according to the table, am I correct? If so, you might want to put the position to “relative”. I’ve modified your code a big to illustrate:
Hope this is what you are looking for =)