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 :).
Printable View
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 :).
#container {
width: #;
margin-right: auto;
margin-left: auto;
}
ty +rep
Correct ;) # being your desired widthin percent pixels, and a few others.
eg 800px or 66%
I use:
It is essentially the same, but less code :)HTML Code:#div {
margin: 0 auto;
}