How do I make the footer stretch vertically downward align to footer.
Posted
by text
on Stack Overflow
See other posts from Stack Overflow
or by text
Published on 2010-04-13T07:41:08Z
Indexed on
2010/04/13
7:42 UTC
Read the original article
Hit count: 238
css
I am new to web design using tableless and I'm having problem positioning some elements on my page..
Here's the sample html: http://christianruado.comuf.com/sample.html
As you can see from the screen shots I want my right div to be vertically stretched down to the same level of my footer and position my bottom element to the lowest part of the right container.
#right {
float:right;
width: 19%;
background:#FF3300;
margin-left:2px;
height: 100%;
}
#right .bottom {
bottom:0;
display:block;
background-color:#FFCCFF;
height:30px;
}
© Stack Overflow or respective owner