Home › Forums › CSS › What would all the possible reasons be why your footer wont show up? › Re: What would all the possible reasons be why your footer wont show up?
April 22, 2011 at 10:11 am
#50046
Participant
If you got this from nettuts, why would you have improper CSS? Especially like a bottom float? Also, not sure if you forgot an opening tag when you copied or not but make sure to have that at the beginning of your div.
div id="footer">
HTML
You need to have an unordered list and list items before your anchor tags.
e.g.
CSS
Get rid of the bottom float as it does not exist.
float:bottom;
Add these prefixes to border-radius
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
I would really need a link to check for any visual errors beyond this.