prima di tutto grazie...
Considera dopo le modifiche il footer segue il corpoo attaccandosi sotto ...dovrebbe invece rimanere ancorato a fondo pagina insieme al corpo
come ad esempio succede correttamente cosi'
HTML
codice:
<div id="container">
<div id="header">
Header
</div>
<div id="content">
Corpo
</div>
<div id="footer">
Footer
</div>
</div>
CSS
codice:
html,body {
margin:0;
padding:0;
height:100%;
background:gray;
font-family:arial,sans-serif;
font-size:small;
color:#666;
}
h1 {
font:1.5em georgia,serif;
margin:0.5em 0;
}
h2 {
font:1.25em georgia,serif;
margin:0 0 0.5em;
}
h1, h2, a {
color:orange;
}
p {
line-height:1.5;
margin:0 0 1em;
}
div#container {
position:relative;
margin:0 auto;
width:750px;
background:#0F0;
height:auto !important;
height:100%;
min-height:100%;
}
div#header {
padding:1em;
background:#fff;
/*background:#ddd url("../csslayout.gif") 98% 10px no-repeat;*/
border-bottom:6px double gray;
}
div#header p {
font-style:italic;
font-size:1.1em;
margin:0;
}
div#content {
padding:1em 1em 5em;
margin-top:20px;
height:auto !important;
height:100%;
min-height: height:100%;
background-color:#006;
}
div#content p {
text-align:justify;
padding:0 1em;
}
div#footer {
position:absolute;
width:100%;
bottom:0;
background:#ddd;
border-top:6px double gray;
overflow:visible;
}
div#footer p {
padding:1em;
margin:0;
}