I want the #copyright to be at the bottom of #outer
Here is the css for #copyright
#outer {
height: 100px;
border: 1px solid red;
position: relative;
}
#copyright {
position:absolute;
height: 30px;
bottom: 0;
left: 0;
border: 1px solid black;
width: 300px;
}
© 1965 - 2010
Also, never use "0px". There is no such thing as zero pixels, only zero. Correct way is "right: 0;"