прочитал. сделал как там написано, только в итоге мой футер вобще не появляется на экране... странно, но сделал как написано в статье... абсолютное позиционирование футера, высота 100% у body и html.
Код:
html {
****height: 100%;
}
body {
*margin: 0px;
*padding: 0px;
*background-color: #DAB080;
*background: url(img/fon.jpg);
*color: #333333;
*font-family: Arial, verdana, sans-serif;
*font-size: 99%;
*min-height: 100%;
*position: relative;
}
* html body {
****height: 100%;
}
#wrapper {
****margin-top: 10px;
****position: relative;
****min-height: 100%;
}
* html #wrapper {
****height: 100%;
}
#footer {
****height: 20px;
****position: absolute;
****bottom: 0px;
****background: #DCB47A;
****/*margin-top: -20px;*/
}
* html #footer {
****overflow: hidden;
}