Ejemplo de imagen de fondo en html

Esta página tiene una imagen de fondo situada en el centro del documento y repetida horizontalmente:

html {  
  background-image: url("cuadricula.png");  
  background-position: center center;  
  background-repeat: repeat-x;
}