Jump to content

Positioning in different resolutions


wwfc_barmy_army

Recommended Posts

Hello.

I am using this bit of CSS to position a table in a certain place on my page:

[code] position: absolute;
right: 400px;
top: 300px;[/code]

Although this is spot on using my resolution when i check what it looks like with a smaller resolution it moves and goes over text etc.

How can i get it to stay still. Can i use different CSS for it?

Thanks.
Link to comment
https://forums.phpfreaks.com/topic/26548-positioning-in-different-resolutions/
Share on other sites

The absolute position is always going to be how many pixels you specifiy from the top/bottom/right/left of your browser window.  So, obviously 300px would look different on different screen sizes or just resizing the browser.  If you want to position absolute within another container, than you need to position that container relative, and then position the inner content absolute.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.