I am developing an html page on Windows platform. I find when the resolution (or size, in pixels) of browser (display) is larger than the page size, the page will be aligned to the left of the browser, and I want to align the page to the center (middle) of the browser when the page size is smaller than browser.

Any ideas how to implement this and how to find the root cause why aligned to left? The html page is big and not convenient to paste html code here.

thanks in advance, George

link|improve this question

57% accept rate
feedback

4 Answers

up vote 1 down vote accepted

Any ideas how to implement this and

http://dorward.me.uk/www/centre/

how to find the root cause why aligned to left?

… because that is the default.

link|improve this answer
I find the same issue for IE and Firefox, you mean default alignment is left for both IE and Firefox? – George2 Dec 21 '09 at 16:32
In your recommended document, it mentioned how to make it center for a specific element, like <h1>, my question is how to make it center for the whole page? – George2 Dec 21 '09 at 16:34
You wrap all the content in an element (such as a div) and centre it. – Quentin Dec 21 '09 at 18:11
Thanks, question answered! – George2 Dec 22 '09 at 8:00
feedback

First of all, you'll want to wrap your page content in a block (this block will be centered):

<div id="body">
    <!-- your page content here -->
</div>

Then you'll want to style it as being centered. Due to a little disparity in how Firefox and IE handle centering a block, you'll have to do 2 things to center this block.

1. Set the body as centering everything (for IE):


body {
    text-align: center;
}

2. Set the left and right margins of your interior block as 'auto'; and

3. Since centering text inherits to its child nodes, you want to set it back to left-alignment (unless, you do want all your text to be centered.. blah!):


#body {
    margin: 0px auto;
    text-align: left;
    width: 800px; /* set this width to how wide you want your content to be */
}
link|improve this answer
feedback
<style>
body
{
    width:800px;
    margin:auto;
}
</style>
link|improve this answer
I did not find any code dealing with alignment in your code snippet? – George2 Dec 21 '09 at 16:37
1  
In CSS, setting the left and right margins of an element to “auto” causes that element to be centered within its containing block. – Paul D. Waite Dec 21 '09 at 16:44
Thanks! My html page contains a lot of master pages (legacy code) and I do not want to touch them too much. Could you recommend me a safe and efficient way to make the page align center without touching these master pages? :-) – George2 Dec 21 '09 at 16:53
Some versions of Internet Explorer (7 and lower IIRC) will not allow you to set a width on the body element. – Quentin Dec 21 '09 at 18:11
feedback

you simply need to add, text-align: center; to your body to cover legacy browsers and add:

text-align: left;
margin: 0 auto;

to your first container div ... this will be centered horizontally in all browsers, no matter how old.

link|improve this answer
Why I need to add both text-align: center; and text-align: left;? – George2 Dec 21 '09 at 16:42
1  
text-align: center; on the body is to align everything on the page in the center ... because of this you need to overwrite it in your container div so that the default position of your images/body copy etc is left, as it would be naturally. – Jonny Haynes Dec 21 '09 at 16:44
1. You mean add "text-align: center" to body element and add "text-align: left;" to other div? 2. My html page contains a lot of master pages (legacy code) and I do not want to touch them too much. Could you recommend me a safe and efficient way to make the page align center without touching these master pages? :-) – George2 Dec 21 '09 at 16:52
1  
Yes that's what I mean ... there is no other way ... this is how you align a page. Sorry. – Jonny Haynes Dec 21 '09 at 16:57
It's wrong to down vote without stating why! – Jonny Haynes Dec 22 '09 at 9:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.