Search code examples
htmlcsscenter

HTML center content in body tag


I'm trying to center the content in my body tag in a simple HTML page. I want the body to be 100% width, i have a container div inside of it with a set width, i want the container to be in the center of the screen.

I tried to set the margin to 0 auto; does not work, tried to set align="center" in the body tag, doesnt work.

Here is my page, as you can see it's not in center: http://jsbin.com/vifekivatabo/1/

What am i doing wrong?


Solution

  • Hey you forget to this

    Define

    your .container1 margin:0 auto;

    .container1{
    margin:0 auto;
    }