I have been having problems with CSS and adjusting to all screen sizes. I have come up with 2 possible (not ideal) ways of handling different screen sizes.
First option:
One container to hold all elements inside it and make it absolute position with 100% width
and then each element inside that container is relative position with percentages for top, left, bottom, right.
Second option:
One container to hold all elements inside it and make it relative position with 100% width
and then each element inside that container is absolute position with percentages for top, left, bottom, right.
Is there any other possible solution to different screen handling?
I've tried both and when looking at my website on different computers with different screen sizes, some of the elements are too far down, or too far up.
I would appreciate any tips/help. Thanks!