Created
July 26, 2010 04:03
-
-
Save jamosonic/490168 to your computer and use it in GitHub Desktop.
Technique to center list items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#container, | |
#container ul, | |
#container li { | |
float: left; | |
position: relative; | |
} | |
#container { | |
width: 100%; | |
overflow: hidden; | |
} | |
#container ul { | |
left: 50%; | |
margin: 0; | |
padding: 0; | |
} | |
#container li { | |
right: 50%; | |
margin: 0; | |
padding: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="container"> | |
<ul> | |
<li>Item 1</li> | |
<li>Item 2</li> | |
<li>Item 3</li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment