Ok ho guardato qualche tutorial e l'ho modificato..perché continua a non andare?
html:
codice:
<div id="container">
<div id="header" >
</div>
<div id="content">content
</div>
<div id="navi">
<ul>
[*]HOME
[*]HOME[*]HOME
[/list]
</div>
<div id="footer">
</div>
</div>
css:
codice:
body,html {
margin:0;
padding:0;
color:#000;
background:#a7a09a;
}
#container {
width: 100%;
height: 100%
margin:0 auto;
background:#99c;
}
#header {
background:#ddd;
height: 10%;
}
#content {
float:left;
width: 70%;
height: 85%;
background:#9c9;
}
#navi {
float:right;
width: 30%;
height: 85%;
background:#c9c;
}
#footer {
clear: both;
background:#cc9;
height: 5%;
}