I am attempting to create website with a fixed width (970 px) and would like to ensure that it is adjusted to any potential user screen size, but the browser continues to display it in addition to margins created by my overall screen width.
|
If you are trying to make your page span 100% of the width then review this article: Liquid Layout If you are trying to center your fixed width content on any page width simply use:
|
|||
|
|
|
You shouldn't set the width. The contents of the page will expand to fill the entire screen by default. If you need to find the actual width of an element, you can always find that out. If you're using jQuery, it's
|
|||
|
|
|
If understand what you're getting at, it sounds like you set up your margins incorrectly. to center your content, you'll want your code to look something like this: http://jsbin.com/uyolo4/4/edit |
|||
|
|
|
It's not a liquid-layout that you're after, but an 'elastic' layout, with an 'auto-stretch' script attached. There are a few steps to getting this to work:
Here's a good starting point for elastic layouts: http://www.alistapart.com/articles/elastic |
|||
|
|
970px, but you want the browser to somehow "zoom in" so that everything is scaled to fit the browser width? – thirtydot May 27 '11 at 23:59