Skip to content

Instantly share code, notes, and snippets.

@chubas
Created September 13, 2011 04:16
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 chubas/1213102 to your computer and use it in GitHub Desktop.
Save chubas/1213102 to your computer and use it in GitHub Desktop.
Centering floated elements
#container {
float:right;
position:relative;
left:-50%;
}
#container ul {
list-style:none;
position:relative;
left:50%;
}
#container li{
float:left;
position:relative; /* ie needs position:relative here*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment