Skip to content

Instantly share code, notes, and snippets.

@justinwhall
Created March 15, 2012 22:43
Show Gist options
  • Save justinwhall/2047430 to your computer and use it in GitHub Desktop.
Save justinwhall/2047430 to your computer and use it in GitHub Desktop.
CSS Centered Menu
#centered{
width:100%;
float: left;
overflow: hidden;
position: relative;
}
#centered ul{
clear:left;
float:left;
list-style:none;
margin:0;
padding:0;
position:relative;
left:50%;
text-align:center;
}
#centered ul li {
display:block;
float:left;
list-style:none;
margin:0;
padding:0;
position:relative;
right:50%;
}
#centered ul li a {
display:block;
margin:0 0 0 1px;
padding:3px 10px;
background:#ddd;
color:#000;
text-decoration:none;
line-height:1.3em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment