Con un'immagine?
Esempio:
codice:
HTML:
<div id="container">
<div id="sfondo">
<img src="rettangolo" alt="*" />
</div>
<div id="content">
... tutto quello che vuoi ...
</div>
</div>
CSS:
html, body {
width: 100%;
}
#container {
width: 100%;
position: relative; /* o anche absolute */
}
#sfondo {
width: 100%;
position: absolute;
left: 0;
right: 0;
}
#sfondo img {
width: 100%;
}
#content {
width: 100%;
position: absolute;
left: 0;
right: 0;
}
L'immagine sara` un rettangolo di colore omogeneo con rapporto 3:2 (anche bianco, se vuoi)
Nota: se il #content e` piu` alto, la pagina si allunga