What is the easiest way to horizontally center a div using CSS?

I need to horizontally center a fixed width div. What is the easiest way of doing this using CSS?

Comments

  • DavidMDavidM USA
    edited March 2014

    Stylesheet

    div.yourDiv
        {
          width: 500px;
          display: block;
          margin-left: auto;
          margin-right: auto;
        }

    HTML
    <div class="yourDiv">Your content here</div>

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion