I need to horizontally center a fixed width div. What is the easiest way of doing this using CSS?
Stylesheet
div.yourDiv { width: 500px; display: block; margin-left: auto; margin-right: auto; }
HTML <div class="yourDiv">Your content here</div>
<div class="yourDiv">Your content here</div>
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Stylesheet
HTML
<div class="yourDiv">Your content here</div>