How to center CSS web site? I design my site using layers, but it is always goes to left side of the screen. What is the best way that I can do it easily?
Im not the best with CSS, but i think setting a margin should center your website. ie: * { margin: 0 auto; } Correct me if im wrong.
You do need to specify a width, and apply it to a block level element (e.g., a div) the "*" selector is a universal selector, and will apply to all elements, meaning, unless otherwise specified in the stylesheet, all block level elements will have a default margin of 0 auto; if you use the * selector.
If you have the layout of the css in a container, put it in the container div tag. I think, I'm still learning #page {background-color: white; border: solid 3px #000; margin: 0 auto; padding: 2px; width: 900px}