I'm having trouble getting my copyright span to align to the right in my footer. Can you help me figure out what I'm doing wrong?
<footer>
<span>Blog</span><span>Hire</span><span>About</span><span id="copyright">Copyright © 2012 Max Kramer</span>
</footer>
footer {
width: 50%;
height: 100%;
margin-left: auto;
margin-right: auto;
}
footer span {
display: inline-block;
}
footer span #copyright{
text-align: right;
}