How do I center <div> tag using CSS?

css

Solution

Add the following to your css rules

margin: 0 auto;

This will horizontally center block level elements.

Problem

Code thus far: ``` #master { position: absolute; height: auto; width: 1000px; min-height: 50px; } ``` I want to center the tag horizontally, but not the task. What code do I need to add to do this?

Original source

Related problems