Centering a Div With CSS
You need to wrap in another div, and center via that one.
e.g.
body {
text-align: center;
}
.outer_div {
text-align: left;
width: 750px;
height: 500px;
background: white;
padding: 5px;
margin: 0 auto;
}
e.g.
body {
text-align: center;
}
.outer_div {
text-align: left;
width: 750px;
height: 500px;
background: white;
padding: 5px;
margin: 0 auto;
}