Я пытаюсь изменить липкий нижний колонтитул (http://www.cssstickyfooter.com/), чтобы показать поле ... это легко для правого и левого с шириной: 90% и маржа: авто
| | | |
| | | |
| | | |
| | | |
но как получить высоту до 90% (или показать какое-то верхнее и нижнее поле) без путаницы в плавающем нижнем колонтитуле
| ____ |
| | | |
| |____| |
| |
спасибо
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,
textarea,p,blockquote,th,td {
margin:0;
padding:0;
}
#header {
height: 33px;
line-height: 33px;
text-align: center;
background-color: green;
}
html { height: 100%; }
body { height: 100%; width: 90%; margin: auto; }
#wrap { min-height: 100%; background-color:gray; }
#main {
overflow: auto;
padding-bottom: 33px; /* must be same height as the footer */
background-color: red;
height: 100%;
}
#footer {
position: relative;
margin-top: -33px; /* negative value of footer height */
height: 33px;
line-height: 33px;
text-align: center;
background-color:blue;
}
http://jsfiddle.net/56REF/