Skip to content

Instantly share code, notes, and snippets.

@terkel
Created November 1, 2011 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terkel/1329581 to your computer and use it in GitHub Desktop.
Save terkel/1329581 to your computer and use it in GitHub Desktop.
Centering floated items
/* http://hail2u.net/blog/webdesign/centering-floated-list.html */
.centered {
position: relative;
overflow: hidden;
}
.centered ul {
position: relative;
left: 50%;
float: left;
}
.centered ul li {
position: relative;
left: -50%;
float: left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment