HTML:
codice:
<body>
  <div class="percentrare">
    <h1>questo e` il titolo</h1>
  </div>


contenuto>
</body>
CSS:
codice:
html, body {
  width: 100%;
}
.percentrare{
  width: 100%;
  text-align: center;  /* serve solo per IE */
}
h1 {
  margin: 0 auto;    /* per browser standard */
}