Jump to content

Centering


benji87

Recommended Posts

Hi everyone, im having my first go at using CSS for layout so apologies if this is all wrong!

 

I am trying to centre my divs in the middle of the page but for some reason it seems to place it 75% accross the page. Ive tried using text-align to override the bug in IE 6 i think it is but it doesnt seem to be helping it. Ive also tried putting each div's left space to 50% but still the same effect  :-\

 

Can anyone tell me what im doing wrong please? Ive tested this in IE 7 and Firefox 2.0. Here is my url: www.alns.co.uk/plm

 

Cheers guys

Link to comment
Share on other sites

To center a div on the page, there are two steps:

 

1) Set your width

2) Set your left and right margins to auto

 

That's really all there is to it. When you have a layout set that you want to center the whole thing, just place a wrapper div around it and apply the centering steps to that div:

 

CSS:

#wrapper {
  width: 720px;
  margin: 0 auto;
}

 

HTML:

<div id="wrapper">
  <!-- Page content here -->
  <p>Look, ma! I'm centered!</p>
</div>

 

Good luck!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.