Documento sin título

Me Gusta

HTML

XXXXX

XXXXX

Código de margin auto

<!DOCTYPE html>
<html>
<head>
<style>
#elemento {
    width:300px;
height:300px;
    margin: auto;
    border: 1px solid black;
background:#CF9
}
</style>
</head>
<body>


<div id="elemento">
This div will be centered because it has margin: auto;
</div>

</body>
</html>