PDA

View Full Version : how do I centre in css



Chippiewill
06-03-2008, 05:14 PM
How do I centre a whole container?

Quick please.

All helpful comments get +rep

Thread moved from design and development by --ss-- (Forum Super Moderator): Please post in the correct section :).

wewt
06-03-2008, 05:16 PM
#container {
width: #;
margin-right: auto;
margin-left: auto;
}

Chippiewill
06-03-2008, 05:17 PM
ty +rep

Hypertext
06-03-2008, 05:17 PM
Correct ;) # being your desired widthin percent pixels, and a few others.

eg 800px or 66%

L?KE
07-03-2008, 05:07 PM
I use:



#div {
margin: 0 auto;
}


It is essentially the same, but less code :)

Want to hide these adverts? Register an account for free!