Centering with CSS

By Xah Lee. Date: . Last updated: .

To center a block level element, use:

margin-left: auto;
margin-right: auto;

Here is a centered element.

wow

Here is the code:

.cen49653 {
margin-left: auto;
margin-right: auto;
}
<div class="cen49653">wow</div>