Ciao a tutti,
ho da poco iniziato ad armeggiare con xhmtl e i css, sto cercando di mettere un header da file nella mia pagina caricandolo in un box, questo è il codice:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Prova esame</title>
<link rel="stylesheet" type="text/css" href="foglio.css" />
</head>
<div id="div_header"> </div>
<body>
</body>
</html>

CSS:
body{

margin:0px;
padding:0px;
background-color:white;
}

#div_header{
background-image: url(header_long.png);
background-repeat: no-repeat;
width: 100%;
height: 91px;
padding: 0;
margin: auto;


}
l'immagine è 800x91 e non riesco ad adattarla per tutta la lunghezza del box, resta una parte bianca...
come potrei fare?