Comment centrer une Balise DIV dans une page
le trucs est simple
html, body { height: 100%; } #zone{ display:block; text-align:left; background-color: #292929; width: 770px; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; }
ça c'est pour le style, maintenant dans la page vous mettez simplement une balise DIV avec zone comme id :
<div id="zone"></div>