Come fare per rendere full screen il SOLO div navigation nel codice sotto riportato visto che come scritto diventa comunque di larghezza 900px? GRAZIE
body {
padding: 0px;
margin: 0px;
}
#wrapper {
margin: 0 auto;
width: 900px;
}
#header {
width: 900px;
float: left;
height: 100px;
}
#navigation {
float: left;
width: 100%;
}
#footer {
width: 900px;
clear: both;
}