<!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>